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 3df168c commit 27f82caCopy full SHA for 27f82ca
1 file changed
Dockerfile
@@ -1,5 +1,5 @@
1
# Creating multi-stage build for production
2
-FROM node:18-alpine as build
+FROM node:18.18-alpine3.17 as build
3
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev > /dev/null 2>&1
4
ARG NODE_ENV=production
5
ENV NODE_ENV=${NODE_ENV}
@@ -13,7 +13,7 @@ COPY . .
13
RUN yarn build
14
15
# Creating final production image
16
-FROM node:18-alpine
+FROM node:18.18-alpine3.17
17
RUN apk add --no-cache vips-dev
18
19
0 commit comments