File tree 3 files changed +3
-4
lines changed
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 10
10
ci :
11
11
uses : shlinkio/github-actions/.github/workflows/web-app-ci.yml@main
12
12
with :
13
- node-version : 20.2
13
+ node-version : 20.5
14
14
with-unit-tests : false
15
- force-install : true
Original file line number Diff line number Diff line change 1
1
FROM node:20.5-alpine as node
2
2
COPY . /shlink-api-spec
3
3
RUN cd /shlink-api-spec && \
4
- npm ci --force && \
4
+ npm ci && \
5
5
npm run build
6
6
7
7
FROM nginx:1.25-alpine
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ services:
4
4
shlink_api_spec_ui :
5
5
container_name : shlink_api_spec_ui
6
6
image : node:20.2-alpine
7
- command : /bin/sh -c "cd /shlink-api-spec && npm install -f && npm run start"
7
+ command : /bin/sh -c "cd /shlink-api-spec && npm install && npm run start"
8
8
volumes :
9
9
- ./:/shlink-api-spec
10
10
ports :
You can’t perform that action at this time.
0 commit comments