Skip to content
This repository has been archived by the owner on Jan 24, 2025. It is now read-only.

Commit

Permalink
Update build-image Dockerfile location
Browse files Browse the repository at this point in the history
  • Loading branch information
kentsanggds committed Nov 13, 2023
1 parent de46a62 commit 01813b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/build-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ set -eux

build () {
if [ "${ARCH}" = "amd64" ]; then
docker build . -t "ghcr.io/alphagov/${APP}:${1}" -f "Dockerfile"
docker build . -t "ghcr.io/alphagov/${APP}:${1}" -f "docker/Dockerfile"
else
docker buildx build --platform "linux/${ARCH}" . -t "ghcr.io/alphagov/${APP}:${1}" -f "Dockerfile"
docker buildx build --platform "linux/${ARCH}" . -t "ghcr.io/alphagov/${APP}:${1}" -f "docker/Dockerfile"
fi
}

Expand Down

0 comments on commit 01813b0

Please sign in to comment.