Skip to content
Open
Show file tree
Hide file tree
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,4 +1,4 @@
FROM node:20 AS builder
FROM node:20@sha256:929de1eecc6450613bf37eea2f93f3d362b536a465d74e962488b5eca1168948 AS builder

USER root

Expand All @@ -16,7 +16,7 @@ RUN npm pkg delete scripts.prepare \
&& cp config.schema.json dist/ \
&& npm prune --omit=dev

FROM node:20 AS production
FROM node:20@sha256:929de1eecc6450613bf37eea2f93f3d362b536a465d74e962488b5eca1168948 AS production

COPY --from=builder /app/package*.json ./
COPY --from=builder /app/node_modules/ /app/node_modules/
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
# - Unset/empty = Same-origin only (most secure)
- ALLOWED_ORIGINS=
mongodb:
image: mongo:7
image: mongo:7@sha256:32b5cbf6e1075ad0f5eb2b880ee61e985d5135519a7a34a7d81712af37f27913
ports:
- '27017:27017'
networks:
Expand Down
Loading
Loading