summaryrefslogtreecommitdiffstats
path: root/bin/image
blob: 8a98eb44ee64d63a313b07f107bebf8e8950f31e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
#
# SPDX-License-Identifier: ISC
# Copyright © 2022 siddharth <s@ricketyspace.net>

REPO="public.ecr.aws/w3h8c8i8/peach"
TAG=$(date +%Y%m%d%H%M%S)
if [ -z "$TAG" ]; then
    echo "TAG empty"
    exit 1
fi

docker build -t "$REPO":"$TAG" .