Skip to content
This repository was archived by the owner on Feb 20, 2023. It is now read-only.
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.19-slim as builder
FROM node:19.6-slim as builder
ENV NODE_ENV=development
RUN apt-get update \
&& apt-get install -y build-essential python3 \
Expand All @@ -10,7 +10,7 @@ RUN npm ci
COPY . .
RUN npm run build

FROM node:16.19-slim as runner
FROM node:19.6-slim as runner
WORKDIR /usr/app/
COPY ["package.json", "package-lock.json*", "./"]
ENV NODE_ENV=production
Expand Down