diff --git a/.github/workflows/infrastructure.yml b/.github/workflows/infrastructure.yml index e309f6f..0bb1c76 100644 --- a/.github/workflows/infrastructure.yml +++ b/.github/workflows/infrastructure.yml @@ -66,11 +66,11 @@ jobs: # REPOSITORY_URI=${{ env.ECR_URI }}/base - # docker build -t $REPOSITORY_URI:latest -f ./images/Dockerfile.base . + # docker build -t $REPOSITORY_URI:latest -f ./src/images/Dockerfile.base . # docker tag base:latest $REPOSITORY_URI:latest # docker push $REPOSITORY_URI:latest - docker build -t $REGISTRY/$REPOSITORY:latest -f ./images/Dockerfile.base . + docker build -t $REGISTRY/$REPOSITORY:latest -f ./src/images/Dockerfile.base . docker push $REGISTRY/$REPOSITORY:latest env: REGISTRY: ${{ steps.login-ecr.outputs.registry }} diff --git a/infrastructure/src/images/Dockerfile.base b/infrastructure/src/images/Dockerfile.base index 12e7f20..55fc8e5 100644 --- a/infrastructure/src/images/Dockerfile.base +++ b/infrastructure/src/images/Dockerfile.base @@ -2,4 +2,4 @@ FROM node:20-alpine3.19 AS setup RUN apk add --no-cache python3 make g++ RUN apk add --no-cache jq RUN apk add --no-cache git -RUN apk add --no-cache aws-cli +RUN apk add --no-cache aws-cli \ No newline at end of file