We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 272e7c2 commit b019845Copy full SHA for b019845
Dockerfile
@@ -1,5 +1,5 @@
1
# ---- Base Node with Alpine ----
2
-FROM node:18.20.3-alpine3.18 AS base
+FROM node:22.2.0-alpine3.18 AS base
3
# Set working directory in the container
4
WORKDIR /app
5
# Copy package.json and yarn.lock files to the workspace
@@ -16,7 +16,7 @@ RUN cp -R node_modules prod_node_modules
16
RUN yarn install --frozen-lockfile
17
18
# ---- Release ----
19
-FROM node:18.20.3-alpine3.18 AS release
+FROM node:22.2.0-alpine3.18 AS release
20
# Set working directory
21
22
# Copy production node_modules
0 commit comments