Skip to content

Commit

Permalink
build: Dockerfile 및 Github Actions workflow 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sukkyun2 committed Jul 2, 2024
1 parent 0351011 commit 2fb898f
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 1 deletion.
93 changes: 93 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
name: Deploy with Docker

on:
push:
branches: [ main, build/* ]

env:
DOCKER_IMAGE: ghcr.io/${{ github.actor }}/apap.front
VERSION: ${{ github.sha }}
CONTAINER_NAME: apap.front
HEALTHCHECK_URL: http://${{ secrets.REMOTE_IP }}

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup docker buildx
id: buildx
uses: docker/setup-buildx-action@v1

- name: Cache docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ env.VERSION }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to ghcr
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}

- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ env.DOCKER_IMAGE }}:latest

deploy:
needs: build
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Docker Login
uses: appleboy/ssh-action@master
env:
GHCR_TOKEN: ${{ secrets.GHCR_TOKEN }}
with:
host: ${{ secrets.REMOTE_IP }}
username: ${{ secrets.REMOTE_USER }}
key: ${{ secrets.REMOTE_PRIVATE_KEY }}
port: ${{ secrets.REMOTE_SSH_PORT }}
script: |
whoami
echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.REMOTE_IP }}
username: ${{ secrets.REMOTE_USER }}
key: ${{ secrets.REMOTE_PRIVATE_KEY }}
port: ${{ secrets.REMOTE_SSH_PORT }}
script: |
whoami
docker pull ${{ env.DOCKER_IMAGE }}:latest
- name: Run
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.REMOTE_IP }}
username: ${{ secrets.REMOTE_USER }}
key: ${{ secrets.REMOTE_PRIVATE_KEY }}
port: ${{ secrets.REMOTE_SSH_PORT }}
script: |
whoami
docker stop ${{ env.CONTAINER_NAME }} && docker rm ${{ env.CONTAINER_NAME }}
docker run -d -p 80:80 --name ${{ env.CONTAINER_NAME }} --restart always ${{ env.DOCKER_IMAGE }}:latest
- name: Health Check
uses: jtalk/url-health-check-action@v3
with:
url: ${{ env.HEALTHCHECK_URL }}
max-attempts: 3
retry-delay: 5s
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM node:18 as build

WORKDIR /app

COPY package.json ./
RUN npm install

COPY . ./
RUN npm run build

FROM nginx:alpine

COPY --from=build /app/dist /usr/share/nginx/html

EXPOSE 80

CMD ["nginx", "-g", "daemon off;"]
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
# APAP-front
한이음ICT-2024-APAP-front
스마트해상물류 ICT-2024-APAP-front

### Install
```shell
npm install
```

### Run
```shell
npm run dev
```

0 comments on commit 2fb898f

Please sign in to comment.