Skip to content

Commit

Permalink
chore: up node version (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
shoom3301 authored Jun 19, 2024
1 parent 30536b0 commit 3df168c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Creating multi-stage build for production
FROM node:16-alpine as build
FROM node:18-alpine as build
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev > /dev/null 2>&1
ARG NODE_ENV=production
ENV NODE_ENV=${NODE_ENV}
Expand All @@ -13,7 +13,7 @@ COPY . .
RUN yarn build

# Creating final production image
FROM node:16-alpine
FROM node:18-alpine
RUN apk add --no-cache vips-dev
ARG NODE_ENV=production
ENV NODE_ENV=${NODE_ENV}
Expand Down

0 comments on commit 3df168c

Please sign in to comment.