diff --git a/.nvmrc b/.nvmrc index 0f9eb82..b492b08 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18.15 \ No newline at end of file +18.16 diff --git a/client/Dockerfile b/client/Dockerfile index 6bee057..2a33e84 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.15.0-bullseye-slim +FROM node:18.16-bookworm-slim RUN apt-get update -y && \ apt-get upgrade -y && \ apt-get install -y libc6 && \ diff --git a/client/Dockerfile.prod b/client/Dockerfile.prod index 791b28e..7e1025e 100644 --- a/client/Dockerfile.prod +++ b/client/Dockerfile.prod @@ -1,5 +1,5 @@ # Build all the things -FROM node:18-bullseye-slim AS base +FROM node:18.16-bookworm-slim AS base # Install dependencies FROM base as deps diff --git a/cms/Dockerfile b/cms/Dockerfile index 0ee2ede..dfc47c9 100644 --- a/cms/Dockerfile +++ b/cms/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.15.0-bullseye-slim +FROM node:18.16-bookworm-slim # Install dependencies RUN apt-get update -y && \ apt-get upgrade -y && \ diff --git a/cms/Dockerfile.prod b/cms/Dockerfile.prod index f2c93ff..fde97fa 100644 --- a/cms/Dockerfile.prod +++ b/cms/Dockerfile.prod @@ -1,5 +1,5 @@ # Build all the things -FROM node:18.15.0-bullseye-slim as build +FROM node:18.16-bookworm-slim as build RUN apt-get update -y && \ apt-get upgrade -y && \ apt-get install -y \ @@ -27,7 +27,7 @@ RUN yarn prebuild RUN yarn build # Copy only the built files into the final image -FROM node:18.15.0-bullseye-slim AS runner +FROM node:18.16-bookworm-slim AS runner RUN apt-get update -y && \ apt-get upgrade -y && \ apt-get install -y libvips-dev && \