Skip to content
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 ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:21.4.0-alpine3.17 as base

Check warning on line 1 in ui/Dockerfile

View workflow job for this annotation

GitHub Actions / Build 'ui' Docker container

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/

ARG NPM_CONFIG_REGISTRY

Expand All @@ -10,7 +10,7 @@

RUN npm install

FROM base as development

Check warning on line 13 in ui/Dockerfile

View workflow job for this annotation

GitHub Actions / Build 'ui' Docker container

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/

ARG NPM_CONFIG_REGISTRY
ENV NPM_CONFIG_REGISTRY ${NPM_CONFIG_REGISTRY}
Expand All @@ -23,7 +23,7 @@

CMD ["/scripts/entrypoint-dev.sh"]

FROM base as builder

Check warning on line 26 in ui/Dockerfile

View workflow job for this annotation

GitHub Actions / Build 'ui' Docker container

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/

ARG NPM_CONFIG_REGISTRY

Expand All @@ -35,7 +35,7 @@

RUN npm run build

FROM nginx:1.27.4-alpine as production
FROM nginx:1.29.0-alpine as production

Check warning on line 38 in ui/Dockerfile

View workflow job for this annotation

GitHub Actions / Build 'ui' Docker container

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 curl

Expand Down
Loading