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
2 changes: 1 addition & 1 deletion Dockerfile.ui
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.12-slim
FROM node:20.20.0-slim

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security-medium medium

For improved security and build reproducibility, it's a best practice to pin the base image to its immutable digest (SHA256 hash) rather than a mutable tag. Tags like 20.20.0-slim can be updated, potentially introducing unexpected changes or vulnerabilities into your builds. Using a digest ensures you're always using the exact same base image.

FROM node:20.20.0-slim@sha256:88988517255d15a51b02789a87213203c4675713292415d833220465a3297a73


WORKDIR /app
COPY ./skyvern-frontend /app
Expand Down
Loading