diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-11-06 06:20:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-06 06:20:15 +0100 |
| commit | 1ccf296a558260e46f5b7a294807bd74285e70fc (patch) | |
| tree | 2e72e7185e91aa9af3ea03640cda2e9209546d81 | |
| parent | 082d55e6c5c2f576396d4790179e13ad627f7253 (diff) | |
| parent | dc39f9c960e0eae6392c3d91f0210b0759b6a6c8 (diff) | |
Merge pull request #483 from dalf/fix-docker-lxml
[fix] Dockerfile image
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 9d9290493..2d28a1c7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,8 +47,8 @@ RUN apk upgrade --no-cache \ uwsgi \ uwsgi-python3 \ brotli \ - && pip3 install --upgrade pip \ - && pip3 install --no-cache -r requirements.txt \ + && pip3 install --upgrade pip wheel setuptools \ + && pip3 install --no-cache --no-binary :all: -r requirements.txt \ && apk del build-dependencies \ && rm -rf /root/.cache |