Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update node:23-alpine Docker digest to 3e58d4a #125

Merged
merged 1 commit into from
Dec 10, 2024
Merged
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 backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# use node 20 alpine image as build image
FROM node:23-alpine@sha256:d03e75e7ba1385c2944f4cc374eb5abe0715234f87da5121dbd64f7262ad10df
FROM node:23-alpine@sha256:3e58d4a77778684d17ab30ba8192515bd8078083df29a2d90fe7481f78f30093

# create work directory in app folder
WORKDIR /app
Expand All @@ -17,7 +17,7 @@
RUN npm run build

# expose the host and port 3300 to the server
ENV HOST 0.0.0.0

Check warning on line 20 in backend/Dockerfile

View workflow job for this annotation

GitHub Actions / Build & publish docker image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
EXPOSE 3300

# run the build project with node
Expand Down
Loading