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
fix: Dockerfile to reduce vulnerabilities
  • Loading branch information
snyk-bot committed Nov 11, 2024
commit 69ee66c9f4837742a3608415f735592ace3540af
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# --------------------------------------------------------------------------------
# BASE IMAGE
# --------------------------------------------------------------------------------
FROM node:16.2.0-alpine as base
FROM node:16.19.0-alpine as base

RUN apk add --no-cache make g++ git

Expand Down Expand Up @@ -58,7 +58,7 @@ RUN npm run build
# MAIN IMAGE
# --------------------------------------------------------------------------------

FROM node:16.2.0-alpine as production
FROM node:16.19.0-alpine as production

# Let's make our home
WORKDIR /usr/src/docs
Expand Down