summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-04-18 18:19:22 +0300
committerLauri Ojansivu <x@xet7.org>2018-04-18 18:19:22 +0300
commitce659632174ba25ca9b5e85b053fde02fd9c3928 (patch)
treed91d270f5e4de53eed0d906b4ec43ad0f679eb7a /Dockerfile
parent1e0fcfd20de69abe0541c3e18af2ff5ef75e5815 (diff)
downloadwekan-ce659632174ba25ca9b5e85b053fde02fd9c3928.tar.gz
wekan-ce659632174ba25ca9b5e85b053fde02fd9c3928.tar.bz2
wekan-ce659632174ba25ca9b5e85b053fde02fd9c3928.zip
Removed paxctl alpine fix #1303 , because it did not work anymore.
Thanks to xet7 ! Closes #1594
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 6d52211f..c794f6dc 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,8 +12,9 @@ ARG ARCHITECTURE
ARG SRC_PATH
# Set the environment variables (defaults where required)
-# paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303
-ENV BUILD_DEPS="apt-utils gnupg gosu wget curl bzip2 build-essential python git ca-certificates gcc-7 paxctl"
+# DOES NOT WORK: paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303
+# ENV BUILD_DEPS="paxctl"
+ENV BUILD_DEPS="apt-utils gnupg gosu wget curl bzip2 build-essential python git ca-certificates gcc-7"
ENV NODE_VERSION ${NODE_VERSION:-v8.11.1}
ENV METEOR_RELEASE ${METEOR_RELEASE:-1.6.0.1}
ENV USE_EDGE ${USE_EDGE:-false}
@@ -84,8 +85,8 @@ RUN \
ln -s /opt/nodejs/bin/node /usr/bin/node && \
ln -s /opt/nodejs/bin/npm /usr/bin/npm && \
\
- # paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303
- paxctl -mC `which node` && \
+ #DOES NOT WORK: paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303
+ #paxctl -mC `which node` && \
\
# Install Node dependencies
npm install -g npm@${NPM_VERSION} && \