8000 Bump node from 20-bookworm-slim to 24-bookworm-slim by dependabot[bot] · Pull Request #1669 · serge-chat/serge · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bump node from 20-bookworm-slim to 24-bookworm-slim #1669

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# ---------------------------------------
# Base image for redis
FROM redis:7-bookworm as redis

Check warning on line 3 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-publish-image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# ---------------------------------------
# Build frontend
FROM node:20-bookworm-slim as frontend
FROM node:24-bookworm-slim as frontend

Check warning on line 7 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-publish-image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

WORKDIR /usr/src/app
COPY ./web/package.json ./web/package-lock.json ./
Expand All @@ -16,7 +16,7 @@

# ---------------------------------------
# Runtime environment
FROM python:3.11-slim-bookworm as release

Check warning on line 19 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-publish-image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# Set ENV
ENV NODE_ENV='production'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ---------------------------------------
# Base image for node
FROM node:20-bookworm-slim as node_base
FROM node:24-bookworm-slim as node_base

# ---------------------------------------
# Base image for redis
Expand Down
Loading
0