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 effc1ee #1468

Open
wants to merge 1 commit into
base: master
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 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:558a6416c5e0da2cb0f19bbc766f0a76825a7e76484bc211af0bb1cedbb7ca1e AS base
FROM node:iron-alpine@sha256:effc1ee6b93c4db0aab5729f3bc25d9df841e9b88ec3c4683d5a948a37553244 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:558a6416c5e0da2cb0f19bbc766f0a76825a7e76484bc211af0bb1cedbb7ca1e AS base
FROM node:iron-alpine@sha256:effc1ee6b93c4db0aab5729f3bc25d9df841e9b88ec3c4683d5a948a37553244 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=/OpenSCOW/)

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:a5127daff3d6f4606be3100a252419bfa84fd6ee5cd74d0feaca1a5068f97dcf 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=/OpenSCOW/)

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:558a6416c5e0da2cb0f19bbc766f0a76825a7e76484bc211af0bb1cedbb7ca1e AS base
FROM node:iron-alpine@sha256:effc1ee6b93c4db0aab5729f3bc25d9df841e9b88ec3c4683d5a948a37553244 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