# 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 ```