Fix Dockerfile reference in CI jobs after it was moved

This commit is contained in:
Jonas Schäfer
2021-01-23 14:35:58 +01:00
parent 0e7eccc7b7
commit 7e2c4012cc
2 changed files with 0 additions and 2 deletions

View File

@@ -14,7 +14,6 @@ jobs:
- name: Build the Docker image
run: >-
docker build . \
--file docker/Dockerfile \
--build-arg=BUILD_SERIES=dev \
--build-arg=BUILD_ID="$(echo "$GITHUB_SHA" | head -c 12)" \
--tag snikket/snikket-web-portal:dev

View File

@@ -19,7 +19,6 @@ jobs:
RELEASE_SERIES="${RELEASE_TAG%.*}";
RELEASE_VER="${RELEASE_TAG#$RELEASE_SERIES.}";
docker build . \
--file docker/Dockerfile \
--build-arg=BUILD_SERIES="$RELEASE_SERIES" \
--build-arg=BUILD_ID="$RELEASE_VER" \
--tag snikket/snikket-web-portal:"$RELEASE_SERIES"