Skip to content

Commit

Permalink
use newer debian bullseye base images
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwilby committed May 4, 2023
1 parent 916c1e3 commit 1404d57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# only need to do the node build once, even if we're building multi-arch
FROM --platform=$BUILDPLATFORM node:18-buster-slim as nodebuilder
FROM --platform=$BUILDPLATFORM node:18-bullseye-slim as nodebuilder
COPY package.json package-lock.json /app/
COPY frontend/package.json frontend/package-lock.json /app/frontend/
WORKDIR /app
Expand All @@ -8,7 +8,7 @@ COPY frontend/ /app/frontend/
RUN npm run build


FROM python:3.9-slim-buster AS backend
FROM python:3.9-slim-bullseye AS backend
ARG TARGETARCH
ENV PYTHONUNBUFFERED 1
RUN apt-get --allow-releaseinfo-change update && \
Expand Down

0 comments on commit 1404d57

Please sign in to comment.