Skip to content

Commit 2850ef7

Browse files
author
Hamada
committed
feature: Add initial ci setup and change sequence for docker build
1 parent c3ea207 commit 2850ef7

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

.github/workflows/development-ci.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
pull_request:
9+
10+
jobs:
11+
build:
12+
name: "build-dev-docker-image"
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: docker/setup-qemu-action@v2
17+
- uses: docker/setup-buildx-action@v2
18+
- uses: docker/login-action@v2
19+
with:
20+
registry: ghcr.io
21+
username: ${{ github.repository_owner }}
22+
password: ${{ secrets.GITHUB_TOKEN }}
23+
- uses: docker/build-push-action@v3
24+
with:
25+
context: .
26+
file: ./Dockerfile
27+
platforms: linux/arm64,linux/amd64
28+
push: true
29+
tags: ghcr.io/Distributive-Network/dcp-rest:${{ github.sha }}

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM node:20
22
WORKDIR /usr/src/app
33
COPY . .
4-
RUN npm install
54
RUN ./build-docs.sh
5+
RUN npm install
66
EXPOSE 1234
77
CMD ["node", "app.js"]
88

0 commit comments

Comments
 (0)