fix: fix versions.txt path

This commit is contained in:
DCsunset 2020-02-02 18:40:22 -08:00
parent 59e4bff9ea
commit 808fc464a5
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
# original docker build command # original docker build command
echo "overwriting docker build -f $DOCKERFILE_PATH -t $IMAGE_NAME ." echo "overwriting docker build -f $DOCKERFILE_PATH -t $IMAGE_NAME ."
cat "../versions.txt" | while read VERSION cat "versions.txt" | while read VERSION
do do
# The new image tag will include the version of ubuntu # The new image tag will include the version of ubuntu
IMAGE_TAG="${DOCKER_REPO}:${VERSION}" IMAGE_TAG="${DOCKER_REPO}:${VERSION}"

View file

@ -3,7 +3,7 @@
# original docker push command # original docker push command
echo "overwriting docker push $IMAGE_NAME" echo "overwriting docker push $IMAGE_NAME"
cat "../versions.txt" | while read VERSION cat "versions.txt" | while read VERSION
do do
# The new image tag will include the version of ubuntu # The new image tag will include the version of ubuntu
IMAGE_TAG="${DOCKER_REPO}:${VERSION}" IMAGE_TAG="${DOCKER_REPO}:${VERSION}"