diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-12-18 15:16:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-18 15:16:40 +0100 |
| commit | 2713ac6c0b5aeca29ca1ade6df1b962e9396fdd0 (patch) | |
| tree | 2c1f3b55073c0483b390f6016bbaf0c827dc6b22 | |
| parent | 4da1e0026c930686e8c5b0545b2c97f8b834289b (diff) | |
| parent | 4bd78a7ef0d83f4f6d01aea1a129b20e437ff6ab (diff) | |
Merge pull request #612 from dalf/revert-pr-483
[mod] Dockerfile: use binary from pypi
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index a7e5e5af0..ce74af1d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,7 +48,7 @@ RUN apk upgrade --no-cache \ uwsgi-python3 \ brotli \ && pip3 install --upgrade pip wheel setuptools \ - && pip3 install --no-cache --no-binary :all: -r requirements.txt \ + && pip3 install --no-cache -r requirements.txt \ && apk del build-dependencies \ && rm -rf /root/.cache |