Skip to content

Commit

Permalink
Transitioned to a more reproducible installation, using npm ci inst…
Browse files Browse the repository at this point in the history
…ead of `npm install`
  • Loading branch information
jmfernandez committed Feb 14, 2024
1 parent 93966e2 commit f5e71d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.develop
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ENV KEYCLOAK_REALM $KEYCLOAK_REALM
ENV KEYCLOAK_CLIENT_ID $KEYCLOAK_CLIENT_ID
ENV OBSERVATORY_API_URL $OBSERVATORY_API_URL
COPY . .
RUN npm install
RUN npm ci
RUN npm run build
RUN npm run generate
#stage 2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.develop2
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ENV KEYCLOAK_REALM $KEYCLOAK_REALM
ENV KEYCLOAK_CLIENT_ID $KEYCLOAK_CLIENT_ID
ENV OBSERVATORY_API_URL $OBSERVATORY_API_URL
COPY . .
RUN npm install
RUN npm ci
RUN npm run build
RUN npm run generate
#stage 2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ENV KEYCLOAK_REALM $KEYCLOAK_REALM
ENV KEYCLOAK_CLIENT_ID $KEYCLOAK_CLIENT_ID
ENV OBSERVATORY_API_URL $OBSERVATORY_API_URL
COPY . .
RUN npm install
RUN npm ci
RUN npm run build
RUN npm run generate
#stage 2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The respective docker compose files for the oeb landscape can be found in this r

```bash
# install dependencies
$ npm install
$ npm ci
# serve with hot reload at localhost:3000
$ npm run dev
Expand Down

0 comments on commit f5e71d2

Please sign in to comment.