We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 945ebc1 commit 32893f7Copy full SHA for 32893f7
.github/workflows/main.yml
@@ -10,7 +10,7 @@ jobs:
10
- name: Use Node.js 18.x
11
uses: actions/setup-node@v2
12
with:
13
- node-version: 18.20.7
+ node-version: 18.20.8
14
- name: NPM Build and Test
15
run: |
16
npm ci
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:18.20.7-alpine AS build
+FROM node:18.20.8-alpine AS build
2
3
WORKDIR /srv
4
COPY package*.json /srv/
@@ -8,7 +8,7 @@ COPY src /srv/src/
8
RUN npm run tsc
9
RUN npm ci --production
-FROM node:18.20.7-alpine
+FROM node:18.20.8-alpine
COPY --from=build /srv/node_modules /srv/node_modules
COPY --from=build /srv/dist /srv/
0 commit comments