Skip to content

Commit

Permalink
feat: Updating docker image origin
Browse files Browse the repository at this point in the history
  • Loading branch information
martintomas committed Jan 16, 2024
1 parent a8fa603 commit 4272832
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.15
18.16
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion client/Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion cms/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
4 changes: 2 additions & 2 deletions cms/Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down Expand Up @@ -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 && \
Expand Down

0 comments on commit 4272832

Please sign in to comment.