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.19.6-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.

medium

For improved security and build reproducibility, it's a best practice to pin the base image to its immutable SHA256 digest. Tags like 20.19.6-slim are mutable and can be updated, which could introduce unexpected changes or vulnerabilities. Using a digest ensures you're always building from the exact same base image. You can find the digest on Docker Hub or by inspecting the image locally after pulling it.

FROM node:20.19.6-slim@sha256:<digest_goes_here>


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