Skip to content

Commit

Permalink
Merge pull request #125 from snikket-im/fix/support-requirements-comp…
Browse files Browse the repository at this point in the history
…ilation

Dockerfile: Add dev headers required for building deps
  • Loading branch information
mwild1 authored Feb 1, 2022
2 parents 57f1047 + 344a4d3 commit d4a38f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ RUN set -eu; \
export DEBIAN_FRONTEND=noninteractive ; \
apt-get update ; \
apt-get install -y --no-install-recommends \
python3 python3-pip python3-setuptools python3-wheel build-essential; \
python3 python3-pip python3-setuptools python3-wheel build-essential libpython3-dev; \
pip3 install -r requirements.txt; \
apt-get remove -y --autoremove build-essential; \
apt-get remove -y --autoremove build-essential libpython3-dev; \
apt-get clean ; rm -rf /var/lib/apt/lists; \
pip3 install hypercorn; \
rm -rf /root/.cache;
Expand Down

0 comments on commit d4a38f5

Please sign in to comment.