Skip to content

Commit

Permalink
chore: move to npm ci
Browse files Browse the repository at this point in the history
  • Loading branch information
princerajpoot20 committed Oct 4, 2023
1 parent 81cd935 commit f066248
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ---- Base Alpine with installed Node ----
FROM node:14-alpine3.14 AS base
FROM node:16-alpine3.14 AS base

# install node
RUN apk add --update \
Expand All @@ -12,9 +12,7 @@ WORKDIR /app
COPY . .

# install dependencies
# remove package-lock.json with lockVersion: 1 due to problem described in the https://github.com/asyncapi/.github/issues/123
# remove first run and switch to the `npm ci` when mentioned issue will be resolved
RUN rm package-lock.json; npm install
RUN npm ci

# build to a production Javascript
RUN npm run build:prod
Expand Down

0 comments on commit f066248

Please sign in to comment.