-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add base Dockerfile. update infra workflow (#3)
- Loading branch information
1 parent
7b45e11
commit da579c5
Showing
4 changed files
with
48 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ name: infrastructure | |
env: | ||
NODE_VERSION: 20 | ||
OIDC_ROLE_ARN: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/saas-github-oidc-provider-role | ||
# ECR_URI: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com | ||
|
||
permissions: | ||
id-token: write | ||
|
@@ -31,6 +32,13 @@ jobs: | |
- name: Install | ||
run: npm ci | ||
|
||
- uses: dorny/[email protected] | ||
id: filter | ||
with: | ||
filters: | | ||
images: | ||
- '**/*/Dockerfile.base' | ||
- name: Build | ||
working-directory: ./infrastructure | ||
run: | | ||
|
@@ -43,6 +51,30 @@ jobs: | |
role-session-name: gh-infrastructure-deploy-session | ||
role-to-assume: ${{ env.OIDC_ROLE_ARN }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
|
||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v2 | ||
|
||
- name: Deploy base image | ||
if: ${{ steps.filter.outputs.images == 'true' }} | ||
working-directory: ./infrastructure | ||
run: | | ||
# aws --version | ||
# aws ecr get-login-password --region ${{ secrets.AWS_REGION }} | docker login --username AWS --password-stdin ${{ env.ECR_URI }} | ||
# aws ecr describe-repositories --repository-names base || aws ecr create-repository --repository-name base | ||
# REPOSITORY_URI=${{ env.ECR_URI }}/base | ||
# docker build -t $REPOSITORY_URI:latest -f ./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 push $REGISTRY/$REPOSITORY:latest | ||
env: | ||
REGISTRY: ${{ steps.login-ecr.outputs.registry }} | ||
REPOSITORY: base | ||
|
||
- name: Synth | ||
working-directory: ./infrastructure | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
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 |