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 dependency node to v22.9.0 #374

Merged
merged 1 commit into from
Sep 17, 2024
Merged
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
Expand Up @@ -2,8 +2,8 @@

FROM debian:bookworm AS runtime

ENV DEBIAN_FRONTEND noninteractive

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (default, linux/amd64, self-hosted, X64, amd64, default)

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/

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (default, linux/arm64, self-hosted, ARM64, arm64v8, default)

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/
ENV TERM xterm

Check warning on line 6 in Dockerfile

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (default, linux/amd64, self-hosted, X64, amd64, default)

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/

Check warning on line 6 in Dockerfile

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (default, linux/arm64, self-hosted, ARM64, arm64v8, default)

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/

COPY src/01_nodoc /etc/dpkg/dpkg.cfg.d/
COPY src/01_buildconfig /etc/apt/apt.conf.d/
Expand Down Expand Up @@ -51,7 +51,7 @@
ARG TARGETARCH

# renovate: datasource=node-version depName=node
ARG NODE_VERSION=22.8.0
ARG NODE_VERSION=22.9.0
# renovate: datasource=npm depName=npm
ARG NPM_VERSION=10.8.3

Expand All @@ -77,7 +77,7 @@
RUN sed -i "s/rlimit-nproc=3//" /etc/avahi/avahi-daemon.conf

# systemd configuration
ENV container lxc

Check warning on line 80 in Dockerfile

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (default, linux/amd64, self-hosted, X64, amd64, default)

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/

Check warning on line 80 in Dockerfile

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (default, linux/arm64, self-hosted, ARM64, arm64v8, default)

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/

# Set the stop signal to SIGRTMIN+3 which systemd understands as the signal to halt
STOPSIGNAL SIGRTMIN+3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.no-systemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

FROM debian:bookworm AS runtime

ENV DEBIAN_FRONTEND noninteractive∂

Check warning on line 5 in Dockerfile.no-systemd

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (no-systemd, linux/amd64, self-hosted, X64, amd64, no-systemd, -no-systemd)

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/

Check warning on line 5 in Dockerfile.no-systemd

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (no-systemd, linux/arm64, self-hosted, ARM64, arm64v8, no-systemd, -no-systemd)

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/
ENV TERM xterm

Check warning on line 6 in Dockerfile.no-systemd

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (no-systemd, linux/amd64, self-hosted, X64, amd64, no-systemd, -no-systemd)

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/

Check warning on line 6 in Dockerfile.no-systemd

View workflow job for this annotation

GitHub Actions / Flowzone / Test docker (no-systemd, linux/arm64, self-hosted, ARM64, arm64v8, no-systemd, -no-systemd)

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/

COPY src/01_nodoc /etc/dpkg/dpkg.cfg.d/
COPY src/01_buildconfig /etc/apt/apt.conf.d/
Expand Down Expand Up @@ -48,7 +48,7 @@
ARG TARGETARCH

# renovate: datasource=node-version depName=node
ARG NODE_VERSION=22.8.0
ARG NODE_VERSION=22.9.0
# renovate: datasource=npm depName=npm
ARG NPM_VERSION=10.8.3

Expand Down
Loading