diff --git a/Dockerfile b/Dockerfile index ba8fbcc..fb86dad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:15.5-slim as builder +FROM node:19.4-slim as builder WORKDIR /app COPY ./package.json ./package-lock.json ./ @@ -13,7 +13,7 @@ RUN NODE_ENV=production npm run build -FROM node:15.5-slim as fetcher +FROM node:19.4-slim as fetcher WORKDIR /app COPY ./package.json ./package-lock.json ./ @@ -24,7 +24,7 @@ RUN npm ci -FROM node:15.5-slim +FROM node:19.4-slim WORKDIR /app COPY --from=fetcher /app/node_modules /app/node_modules diff --git a/Dockerfile.dev b/Dockerfile.dev index ef4f908..4e6f7d0 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM node:15.5-slim +FROM node:19.4-slim # This Dockerfile adds a non-root user with sudo access. Use the "remoteUser" # property in devcontainer.json to use it. On Linux, the container user's GID/UIDs # will be updated to match your local UID/GID (when using the dockerFile property).