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

chore(deps): update node.js to 558a641 #1420

Merged
merged 1 commit into from
Sep 9, 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 dev/test-adapter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# See the Mulan PSL v2 for more details.


FROM node:iron-alpine@sha256:2cc3d19887bfea8bf52574716d5f16d4668e35158de866099711ddfb2b16b6e0 AS base
FROM node:iron-alpine@sha256:558a6416c5e0da2cb0f19bbc766f0a76825a7e76484bc211af0bb1cedbb7ca1e AS base

RUN apk update && apk add libc6-compat python3 make gcc g++ git

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.docs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# See the Mulan PSL v2 for more details.


FROM node:iron-alpine@sha256:2cc3d19887bfea8bf52574716d5f16d4668e35158de866099711ddfb2b16b6e0 AS base
FROM node:iron-alpine@sha256:558a6416c5e0da2cb0f19bbc766f0a76825a7e76484bc211af0bb1cedbb7ca1e AS base

RUN apk update && apk add libc6-compat python3 make gcc g++ git

Expand All @@ -23,7 +23,7 @@

RUN pnpm fetch

FROM base as pruner

Check warning on line 26 in docker/Dockerfile.docs

View workflow job for this annotation

GitHub Actions / build-images (docs, docs, BASE_PATH=/SCOW/)

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 /app

Expand All @@ -43,7 +43,7 @@

RUN pnpm build

FROM nginx:alpine@sha256:c04c18adc2a407740a397c8407c011fc6c90026a9b65cceddef7ae5484360158 as runner

Check warning on line 46 in docker/Dockerfile.docs

View workflow job for this annotation

GitHub Actions / build-images (docs, docs, BASE_PATH=/SCOW/)

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/

COPY docs/nginx.conf /etc/nginx/templates/default.conf.template
COPY --from=builder --chown=nginx:nginx /app/docs/build /etc/nginx/html/
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.scow
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
# See the Mulan PSL v2 for more details.


FROM node:iron-alpine@sha256:2cc3d19887bfea8bf52574716d5f16d4668e35158de866099711ddfb2b16b6e0 AS base
FROM node:iron-alpine@sha256:558a6416c5e0da2cb0f19bbc766f0a76825a7e76484bc211af0bb1cedbb7ca1e AS base

RUN apk update

FROM base as builder

Check warning on line 16 in docker/Dockerfile.scow

View workflow job for this annotation

GitHub Actions / build-images (scow, scow)

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/

RUN apk add libc6-compat python3 make gcc g++ curl git

Expand Down Expand Up @@ -58,7 +58,7 @@
COPY docker/entrypoint.sh .
RUN chmod +x entrypoint.sh

ENV NODE_ENV production

Check warning on line 61 in docker/Dockerfile.scow

View workflow job for this annotation

GitHub Actions / build-images (scow, scow)

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 3000 80 5000

Expand Down
Loading