Skip to content

Commit c60f5b2

Browse files
committed
ci: Fix the test-installation job when using git URLs
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 72f3265 commit c60f5b2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/containers/test-installation/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55

66
FROM --platform=${TARGETPLATFORM} python:3.11-slim
77

8-
RUN python -m pip install --upgrade --no-cache-dir pip
8+
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
914

1015
COPY dist dist
1116
RUN pip install dist/*.whl && \

0 commit comments

Comments
 (0)