-
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.
- Loading branch information
miro-ring
committed
Dec 16, 2023
1 parent
301d537
commit 3beb0a0
Showing
2 changed files
with
62 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,41 @@ | ||
name: Create and publish a Docker image to AWS ECR | ||
|
||
on: | ||
push: | ||
branches: | ||
- feature/deploy-test | ||
|
||
env: | ||
REGISTRY: ${{ secrets.AWS_ECR_REGISTRY }} | ||
IMAGE_NAME: baro | ||
|
||
jobs: | ||
build-and-push-image: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
tags: | | ||
type=sha | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
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,21 @@ | ||
# node.js 압축 이미지를 설치합니다 | ||
FROM node:20.10.0-alpine as BUILD | ||
|
||
# 이미지 내부 작업 경로를 설정합니다 | ||
WORKDIR /app | ||
|
||
COPY . . | ||
|
||
RUN pnpm i | ||
|
||
RUN pnpm build | ||
|
||
FROM node:20.10.0-alpine | ||
EXPOSE 3000 | ||
|
||
WORKDIR /app | ||
|
||
COPY --from=BUILD /app/ . | ||
|
||
# 앱 시작 명령어"를 시작합니다. | ||
ENTRYPOINT ["pnpm", "start"] |