Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Security upgrade node from 12.22.0-alpine to 12.22.12-alpine #51

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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.22.0-alpine AS base
FROM node:12.22.12-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.22.0-alpine as server
FROM node:12.22.12-alpine as server
WORKDIR /app
COPY --from=dependencies /app/node_modules ./node_modules
COPY --from=build /app/dist ./dist
Expand Down