Skip to content

Commit

Permalink
TMP
Browse files Browse the repository at this point in the history
  • Loading branch information
jemrobinson committed Sep 30, 2024
1 parent 6a9a6f7 commit cd333b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ RUN /root/.local/bin/hatch run pip freeze | grep -v "^-e" > requirements.txt &&
mkdir -p /app/wheels && \
for WHEEL in /app/repairable/*.whl; do \
auditwheel repair --wheel-dir /app/wheels --plat manylinux_2_34_aarch64 "${WHEEL}" 2> /dev/null || mv "${WHEEL}" /app/wheels/; \
done;
done; && \
rm -rf /app/repairable && \
ls -alh /app/wheels/;

## Build a separate pip wheel which can be used to install itself
RUN python -m pip wheel --no-cache-dir --wheel-dir /app/wheels pip && \
Expand Down

0 comments on commit cd333b5

Please sign in to comment.