Skip to content

Commit 213d098

Browse files
authored
pelican: upgrade python version to use latest 3.10 and debian bullseye (#245)
Debian 10 is EOL
1 parent 7df88fd commit 213d098

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pelican/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Settings
22
# ========
3-
ARG PYTHON_VERSION=3.9.17
3+
ARG PYTHON_VERSION=3.10.18-slim-bullseye
44
ARG GFM_VERSION=0.28.3.gfm.12 # must agree with copy below
55

66
# Build cmake-gfm
7-
FROM python:${PYTHON_VERSION}-slim-buster as pelican-asf
7+
FROM python:${PYTHON_VERSION} as pelican-asf
88

99
RUN apt update && apt upgrade -y
1010
RUN apt install curl cmake build-essential -y
@@ -18,7 +18,7 @@ COPY build-cmark.sh bin/build-cmark.sh
1818
RUN bash bin/build-cmark.sh ${GFM_VERSION}
1919

2020
# rebase the image to save on image size
21-
FROM python:${PYTHON_VERSION}-slim-buster
21+
FROM python:${PYTHON_VERSION}
2222

2323
# Use the Pelican version as installed on CI pelican builders (2023-06-02)
2424
ARG PELICAN_VERSION=4.5.4

0 commit comments

Comments
 (0)