Skip to content

Commit

Permalink
Update Docker images from Buster to Bullseye. (#5326)
Browse files Browse the repository at this point in the history
Bullseye support is expected through August 31, 2026, according to
https://www.debian.org/releases/bullseye/.
  • Loading branch information
forestmonster authored Oct 11, 2024
1 parent 22891ff commit 4aa4217
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.4-slim-buster as sdist
FROM python:3.11.4-slim-bullseye as sdist

LABEL maintainer="[email protected]"
LABEL org.opencontainers.image.title="Dispatch PyPI Wheel"
Expand Down Expand Up @@ -56,7 +56,7 @@ RUN YARN_CACHE_FOLDER="$(mktemp -d)" \
&& mv /usr/src/dispatch/dist /dist

# This is the image to be run
FROM python:3.11.4-slim-buster
FROM python:3.11.4-slim-bullseye

LABEL maintainer="[email protected]"
LABEL org.opencontainers.image.title="Dispatch"
Expand Down Expand Up @@ -84,7 +84,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
wget gnupg \
&& rm -rf /var/lib/apt/lists/*

RUN echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
RUN echo "deb http://apt.postgresql.org/pub/repos/apt bullseye-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
&& wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -

RUN wget --quiet -O - https://deb.nodesource.com/setup_12.x | bash -
Expand Down

0 comments on commit 4aa4217

Please sign in to comment.