diff options
author | Lauri Ojansivu <x@xet7.org> | 2019-04-20 13:31:03 -0400 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2019-04-20 13:31:03 -0400 |
commit | 0a20795ea4bfd32298232b21cc3c6e698d115953 (patch) | |
tree | a67dbf2aeb5ccab8599c33910f27fa7c078e7da1 /Dockerfile | |
parent | c3a27f6d171d7056d82bf1a5a11cd2bcd8d1da31 (diff) | |
download | wekan-0a20795ea4bfd32298232b21cc3c6e698d115953.tar.gz wekan-0a20795ea4bfd32298232b21cc3c6e698d115953.tar.bz2 wekan-0a20795ea4bfd32298232b21cc3c6e698d115953.zip |
Fix python3 pip and setuptools error.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ LABEL maintainer="wekan" # Set the environment variables (defaults where required) # DOES NOT WORK: paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303 # ENV BUILD_DEPS="paxctl" -ENV BUILD_DEPS="apt-utils bsdtar gnupg gosu wget curl bzip2 build-essential python3 python3-distutils git ca-certificates gcc-8" \ +ENV BUILD_DEPS="apt-utils bsdtar gnupg gosu wget curl bzip2 build-essential python3 python3-pip git ca-certificates gcc-8" \ DEBUG=false \ NODE_VERSION=v8.16.0 \ METEOR_RELEASE=1.8.1 \ @@ -108,6 +108,7 @@ RUN \ \ # OS dependencies apt-get update -y && apt-get install -y --no-install-recommends ${BUILD_DEPS} && \ + pip3 install -U setuptools wheel && \ \ # Meteor installer doesn't work with the default tar binary, so using bsdtar while installing. # https://github.com/coreos/bugs/issues/1095#issuecomment-350574389 |