File tree 2 files changed +30
-1
lines changed
2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change
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 }}
Original file line number Diff line number Diff line change 1
1
FROM node:20
2
2
WORKDIR /usr/src/app
3
3
COPY . .
4
- RUN npm install
5
4
RUN ./build-docs.sh
5
+ RUN npm install
6
6
EXPOSE 1234
7
7
CMD ["node" , "app.js" ]
8
8
You can’t perform that action at this time.
0 commit comments