From 404c56519f6d5cb5b9175cc9cf1767ff9d42cdfb Mon Sep 17 00:00:00 2001 From: ashley taylor Date: Sat, 9 Mar 2024 21:49:01 +0000 Subject: [PATCH] chore: fix Dockerfole location --- .github/workflows/infrastructure.yml | 4 ++-- infrastructure/src/images/Dockerfile.base | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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