Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage Base
FROM node:12.16.3-alpine AS base
FROM node:12.22.10-alpine AS base
RUN apk add --update --no-cache python make g++
RUN npm install pnpm --global
RUN pnpm install node-gyp --global
Expand All @@ -17,7 +17,7 @@ RUN pnpm install
RUN pnpm build

# Stage Server
FROM node:12.16.3-alpine as server
FROM node:12.22.10-alpine as server
WORKDIR /app
COPY --from=dependencies /app/node_modules ./node_modules
COPY --from=build /app/dist ./dist
Expand Down