Skip to content

Commit

Permalink
docker: bump node from 14 to 21 in /asctb-api
Browse files Browse the repository at this point in the history
Bumps node from 14 to 21.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 1, 2023
1 parent 3be197e commit 608fab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions asctb-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:14 AS build
FROM node:21 AS build
WORKDIR /usr/src/app
COPY . .
RUN npm ci
RUN npm run build-ts && npm prune --production

FROM node:14
FROM node:21
RUN npm install pm2 -g
ENV NODE_ENV production
ENV PORT 8080
Expand Down

0 comments on commit 608fab6

Please sign in to comment.