summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-07-10 18:45:57 -0400
committerLauri Ojansivu <x@xet7.org>2019-07-10 18:45:57 -0400
commit5db79880669592adedb8fe825848dd7fee7865d7 (patch)
tree75d85db4390984bdd4f447fc6510ece694b22583 /Dockerfile
parent1634a142462ba9084b03ff54271bba485bfecde2 (diff)
downloadwekan-5db79880669592adedb8fe825848dd7fee7865d7.tar.gz
wekan-5db79880669592adedb8fe825848dd7fee7865d7.tar.bz2
wekan-5db79880669592adedb8fe825848dd7fee7865d7.zip
Change compiler to g++
Thanks to xet7 !
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 52489e97..729f5a59 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 python python3 python3-pip git ca-certificates gcc-8" \
+ENV BUILD_DEPS="apt-utils bsdtar gnupg gosu wget curl bzip2 g++ build-essential python python3 python3-pip git ca-certificates" \
DEBUG=false \
NODE_VERSION=v8.16.0 \
METEOR_RELEASE=1.8.1 \
@@ -233,7 +233,7 @@ RUN \
gosu wekan:wekan /opt/nodejs/bin/api2html -c ./public/logo-header.png -o ./public/api/wekan.html ./public/api/wekan.yml; \
# Build app
cd /home/wekan/app && \
- gosu wekan:wekan /home/wekan/.meteor/meteor add standard-minifier-js && \
+ #gosu wekan:wekan /home/wekan/.meteor/meteor add standard-minifier-js && \
gosu wekan:wekan /home/wekan/.meteor/meteor npm install && \
gosu wekan:wekan /home/wekan/.meteor/meteor build --directory /home/wekan/app_build && \
cp /home/wekan/app/fix-download-unicode/cfs_access-point.txt /home/wekan/app_build/bundle/programs/server/packages/cfs_access-point.js && \