Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Pin base image version in Dockerfile (#709)
  • Loading branch information
krischarbonneau authored Jul 29, 2024
commit e070ea8bec1c957c504f0ec2a9a51e7074610cae
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine3.20 AS base
FROM node:20.16.0-alpine3.20 AS base
WORKDIR /base
COPY package*.json ./
RUN npm ci && npm cache clean --force
Expand Down Expand Up @@ -42,7 +42,7 @@ xargs > \
chmod 644 /etc/ssl/certs/root.crt && \
npm run build

FROM node:20-alpine3.20 AS production
FROM node:20.16.0-alpine3.20 AS production
ENV NODE_ENV=production

ARG user=nodeuser
Expand Down