-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af97c22
commit 4dcd60a
Showing
3 changed files
with
61 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Build and Push Docker Image to ECR | ||
|
||
on: | ||
push: | ||
branches: | ||
- example/pipeline # or specify any branch you want to trigger this workflow on | ||
|
||
jobs: | ||
build-and-push: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Log in to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v2 | ||
|
||
- name: Configure AWS credentials with session token | ||
uses: aws-actions/configure-aws-credentials@v2 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-session-token: ${{ secrets.AWS_SESSION_TOKEN }} # Use the session token | ||
aws-region: us-east-1 # Change to your AWS region | ||
|
||
- name: Build, tag, and push Docker image | ||
env: | ||
ECR_URI: "778529894665.dkr.ecr.us-east-1.amazonaws.com/web-app" | ||
IMAGE_TAG: ${{ github.sha }} | ||
run: | | ||
yarn nx build api-flowaccount-workshop | ||
docker build -t $ECR_URI:$IMAGE_TAG . | ||
docker push $ECR_URI:$IMAGE_TAG | ||
- name: Image digest | ||
run: | | ||
IMAGE_DIGEST=$(docker inspect --format='{{index .RepoDigests 0}}' ${{ env.REPO_URI }}:${{ github.sha }}) | ||
echo "Docker image pushed: $IMAGE_DIGEST" |
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,14 @@ | ||
FROM node:fermium | ||
|
||
ARG GITCOMMIT="" | ||
ENV GIT_COMMIT_HASH=${GITCOMMIT} | ||
|
||
WORKDIR /app | ||
|
||
COPY . . | ||
|
||
RUN npm install | ||
|
||
CMD ["node", "main.js"] | ||
|
||
EXPOSE 8081 |