Skip to content

Commit 00e4f10

Browse files
committed
ci: Support using git URLs in test-installation job
This is part of the upgrade of repo-config from v0.8 to v0.9. See: https://github.com/frequenz-floss/frequenz-repo-config-python/releases/tag/v0.9.0 Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 483b5eb commit 00e4f10

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)