We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7df88fd commit 213d098Copy full SHA for 213d098
pelican/Dockerfile
@@ -1,10 +1,10 @@
1
# Settings
2
# ========
3
-ARG PYTHON_VERSION=3.9.17
+ARG PYTHON_VERSION=3.10.18-slim-bullseye
4
ARG GFM_VERSION=0.28.3.gfm.12 # must agree with copy below
5
6
# Build cmake-gfm
7
-FROM python:${PYTHON_VERSION}-slim-buster as pelican-asf
+FROM python:${PYTHON_VERSION} as pelican-asf
8
9
RUN apt update && apt upgrade -y
10
RUN apt install curl cmake build-essential -y
@@ -18,7 +18,7 @@ COPY build-cmark.sh bin/build-cmark.sh
18
RUN bash bin/build-cmark.sh ${GFM_VERSION}
19
20
# rebase the image to save on image size
21
-FROM python:${PYTHON_VERSION}-slim-buster
+FROM python:${PYTHON_VERSION}
22
23
# Use the Pelican version as installed on CI pelican builders (2023-06-02)
24
ARG PELICAN_VERSION=4.5.4
0 commit comments