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.
test-installation
1 parent 72f3265 commit c60f5b2Copy full SHA for c60f5b2
.github/containers/test-installation/Dockerfile
@@ -5,7 +5,12 @@
5
6
FROM --platform=${TARGETPLATFORM} python:3.11-slim
7
8
-RUN python -m pip install --upgrade --no-cache-dir pip
+RUN apt-get update -y && \
9
+ apt-get install --no-install-recommends -y \
10
+ git && \
11
+ apt-get clean && \
12
+ rm -rf /var/lib/apt/lists/* && \
13
+ python -m pip install --upgrade --no-cache-dir pip
14
15
COPY dist dist
16
RUN pip install dist/*.whl && \
0 commit comments