Browse Source

Fix missing uwsgi dependencies in arm/v7 Docker image

master v1.23.1
Pēteris Caune 3 years ago
parent
commit
30a3482d0e
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
2 changed files with 6 additions and 1 deletions
  1. +5
    -0
      CHANGELOG.md
  2. +1
    -1
      docker/Dockerfile

+ 5
- 0
CHANGELOG.md View File

@ -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


+ 1
- 1
docker/Dockerfile View File

@ -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


Loading…
Cancel
Save