diff options
author | Lauri Ojansivu <x@xet7.org> | 2019-11-21 20:22:37 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2019-11-21 20:22:37 +0200 |
commit | 343343e7e77f9241ef5f58c9cd121f2a49f164b3 (patch) | |
tree | 044ed1e4aeb223d77dcdaad09735ca96849bc1d1 | |
parent | 4f5de87cc4c2281bd576548693de7c94e6a988c6 (diff) | |
download | wekan-343343e7e77f9241ef5f58c9cd121f2a49f164b3.tar.gz wekan-343343e7e77f9241ef5f58c9cd121f2a49f164b3.tar.bz2 wekan-343343e7e77f9241ef5f58c9cd121f2a49f164b3.zip |
Dockerfile: Use eoan base image. Add missing python3 dependency for node-gyp.
Thanks to xet7 !
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ -FROM ubuntu:disco +FROM ubuntu:eoan 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 g++ build-essential git ca-certificates" \ +ENV BUILD_DEPS="apt-utils bsdtar gnupg gosu wget curl bzip2 g++ build-essential git ca-certificates python3" \ DEBUG=false \ NODE_VERSION=v8.16.2 \ METEOR_RELEASE=1.8.1 \ |