Open redeboer opened 3 months ago
Tested with Docker:
rm -r wheels/
gh run download -n wheels -D wheels --repo tamasfe/taplo 10529188669
docker build -t test-pypi-taplo-musl .
docker run -it --rm test-pypi-taplo-musl
# taplo help
Dockerfile
:
FROM python:3.8-alpine3.18
WORKDIR /app
COPY wheels/ wheels/
RUN pip install --no-index --find-links wheels/ taplo
CMD ["/bin/sh"]
Running the above with artifacts from 10529180972
(without musl wheels) instead of 10529188669
fails.
@panekj could you review?
Closes #658