-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CD: add github action for prod image build
- Loading branch information
1 parent
d7e6283
commit 6e2cc9f
Showing
5 changed files
with
450 additions
and
10 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,12 @@ | ||
# Dockerfile for production build | ||
FROM node:18-alpine | ||
|
||
WORKDIR /app | ||
|
||
COPY ./dist/ /app/ | ||
|
||
RUN npm install --global serve | ||
|
||
EXPOSE 80 | ||
|
||
ENTRYPOINT ["serve", "-l", "80", "/app"] |
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,12 @@ | ||
version: "3" | ||
|
||
services: | ||
watch-tower: | ||
image: containrrr/watchtower | ||
volumes: | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
command: --interval 30 --scope zabo-boards | ||
labels: [ "com.centurylinklabs.watchtower.scope=zabo-boards" ] | ||
zabo-boards: | ||
image: ghcr.io/sparcs-kaist/zabo-boards:latest | ||
labels: [ "com.centurylinklabs.watchtower.scope=zabo-boards" ] |
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,50 @@ | ||
name: Build docker image on tag creation | ||
|
||
on: | ||
push: | ||
tags: | ||
- "**" | ||
|
||
jobs: | ||
build: | ||
name: Build and push Image to ghcr | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18' | ||
- name: Install Yarn | ||
run: npm install --global yarn | ||
- name: Install dependencies | ||
run: yarn & yarn build | ||
- name: Setup Docker buildX | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Cache Docker layers | ||
uses: actions/cache@v3 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{runner.os}}-buildx-${{github.sha}} | ||
restore-keys: | | ||
${{runner.os}}-buidx- | ||
- name: Log in to Github Container Registry | ||
run: echo ${{secrets.GITHUB_TOKEN}} | docker login ghcr.io -u USERNAME --password-stdin | ||
- name: Build Static Content | ||
run: | ||
- name: Build and Push Image | ||
id: docker-build | ||
uses: docker/build-push-action@v5 | ||
env: | ||
IMAGE_TAG: ${{github.ref_name}} | ||
with: | ||
file: ./.docker/Dockerfile | ||
push: true | ||
tags: | | ||
"ghcr.io/sparcs-kaist/zabo-server:${{ env.IMAGE_TAG }}" | ||
"ghcr.io/sparcs-kaist/zabo-server:latest" | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache-new | ||
- name: Remove old cache | ||
run: | | ||
rm -rf /tmp/.buildx-cache | ||
mv /tmp/.buildx-cache-new /tmp/.buildx-cache |
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
Oops, something went wrong.