Co-authored-by: jon brookes <marshyon@gmail.com> Reviewed-on: https://codeberg.org/headshed/share-lt/pulls/19
10 lines
210 B
Bash
Executable file
10 lines
210 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
LARAVEL_CONTAINER_NAME="quay.io/marshyon/share-lt"
|
|
CONTAINER_LABEL="v0.0.6"
|
|
CACHE="--no-cache"
|
|
# CACHE=""
|
|
|
|
docker build \
|
|
$CACHE \
|
|
-t ${LARAVEL_CONTAINER_NAME}:${CONTAINER_LABEL} .
|