File tree 2 files changed +9
-3
lines changed
containers/test-installation
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 5
5
6
6
FROM --platform=${TARGETPLATFORM} python:3.11-slim
7
7
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
14
+
9
15
10
16
COPY dist dist
11
17
RUN pip install dist/*.whl && \
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ jobs:
230
230
run : python -m build
231
231
232
232
- name : Upload distribution files
233
- uses : actions/upload-artifact@v3
233
+ uses : actions/upload-artifact@v4
234
234
with :
235
235
name : dist-packages
236
236
path : dist/
@@ -294,7 +294,7 @@ jobs:
294
294
mike set-default $MIKE_VERSION
295
295
296
296
- name : Upload site
297
- uses : actions/upload-artifact@v3
297
+ uses : actions/upload-artifact@v4
298
298
with :
299
299
name : docs-site
300
300
path : site/
You can’t perform that action at this time.
0 commit comments