Browse Source
Fix missing uwsgi dependencies in arm/v7 Docker image
master
v1.23.1
Pēteris Caune
3 years ago
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2
2 changed files with
6 additions and
1 deletions
-
CHANGELOG.md
-
docker/Dockerfile
|
|
@ -1,6 +1,11 @@ |
|
|
|
# Changelog |
|
|
|
All notable changes to this project will be documented in this file. |
|
|
|
|
|
|
|
## v1.23.1 - 2020-10-13 |
|
|
|
|
|
|
|
### Bug Fixes |
|
|
|
- Fix missing uwsgi dependencies in arm/v7 Docker image |
|
|
|
|
|
|
|
## v1.23.0 - 2020-10-13 |
|
|
|
|
|
|
|
### Improvements |
|
|
|
|
|
@ -8,7 +8,7 @@ RUN \ |
|
|
|
printf "[global]\nextra-index-url=https://www.piwheels.org/simple\n" > /etc/pip.conf ; \ |
|
|
|
fi |
|
|
|
RUN pip wheel --wheel-dir /wheels -r /tmp/requirements.txt |
|
|
|
RUN pip wheel --wheel-dir /wheels uwsgi |
|
|
|
RUN rm -f /etc/pip.conf && pip wheel --wheel-dir /wheels uwsgi |
|
|
|
|
|
|
|
FROM python:3.9-slim-buster |
|
|
|
|
|
|
|