-
Notifications
You must be signed in to change notification settings - Fork 523
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Docker images from Buster to Bullseye. (#5326)
Bullseye support is expected through August 31, 2026, according to https://www.debian.org/releases/bullseye/.
- Loading branch information
1 parent
22891ff
commit 4aa4217
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
@@ -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 - | ||
|