Skip to content

Commit

Permalink
can I use a local base image?
Browse files Browse the repository at this point in the history
  • Loading branch information
seplee committed Mar 30, 2024
1 parent 2174324 commit 7fc17e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: |
# Build the base image
cd api
docker build . -f cloud/BaseImage.Dockerfile -t baseImage
docker build . -f cloud/BaseImage.Dockerfile -t base-image
# Build a docker container from the base image
# and push it to ECR so that it can
Expand Down
2 changes: 1 addition & 1 deletion api/cloud/Final.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG WORKDIR="/app"

FROM baseImage
FROM base-image

ARG WORKDIR
WORKDIR ${WORKDIR}
Expand Down

0 comments on commit 7fc17e5

Please sign in to comment.