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 218be7d commit cdd65cbCopy full SHA for cdd65cb
Dockerfile
@@ -3,6 +3,7 @@
3
#---------------------------------------------------------------------------------------------
4
5
# Build with builder image to reduce image size
6
+ARG APE_VERSION
7
FROM python:3.11 as builder
8
USER root
9
WORKDIR /wheels
@@ -13,7 +14,7 @@ RUN pip install --upgrade pip && pip install wheel
13
14
RUN pip wheel . --wheel-dir=/wheels
15
16
# Install from wheels
-FROM ghcr.io/apeworx/ape:latest-slim
17
+FROM ghcr.io/apeworx/ape:${APE_VERSION:-latest-slim}
18
19
COPY --from=builder /wheels /wheels
20
RUN pip install --upgrade pip \
0 commit comments