Skip to content

Commit

Permalink
Fix docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
ajnisbet committed Aug 22, 2023
1 parent 37bb1bf commit 299a72b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Container for packages that need to be built from source but have massive dev dependencies.
FROM python:3.9.16-slim-bullseye as builder
FROM python:3.9.17-slim-bullseye as builder
RUN set -e && \
apt-get update && \
apt-get install -y --no-install-recommends \
gcc \
python3.9-dev

RUN pip config set global.disable-pip-version-check true && \
pip wheel --wheel-dir=/root/wheels uwsgi==2.0.21 && \
pip wheel --wheel-dir=/root/wheels regex==2022.10.31
pip wheel --wheel-dir=/root/wheels uwsgi==2.0.22 && \
pip wheel --wheel-dir=/root/wheels regex==2023.8.8

# The actual container.
FROM python:3.9.16-slim-bullseye
FROM python:3.9.17-slim-bullseye
RUN set -e && \
apt-get update && \
apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit 299a72b

Please sign in to comment.