Wheelie/README.md

21 lines
546 B
Markdown
Raw Permalink Normal View History

2021-02-24 14:58:26 +01:00
# Wheelie
Current flow:
1. Use `alpine.Dockerfile` to create a build-enviroment.
2. Generate wheels with docker run.
```bash
docker run -v "$PWD/out:/build" wheelie \
--find-links=https://rox-wheels.s3.eu-north-1.amazonaws.com/alpine/3.13 \
--trusted-host rox-wheels.s3-website.eu-north-1.amazonaws.com \
cryptography==3.4.1
```
3. Upload the wheels to S3 with `generator/main.py`. Takes S3 info as enviroment variables.
```bash
cd generator
python3 main.py -d alpine -r 3.13 -l -a
```