aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-12-11 19:53:28 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-12-11 19:53:42 +0530
commitc9149558d4b8400839a4a65420bff77db962c53a (patch)
treead7305e591e5e81a502084929eb45559d7602461 /Dockerfile
parent1.3.12 [skip ci] (diff)
downloadferdium-server-c9149558d4b8400839a4a65420bff77db962c53a.tar.gz
ferdium-server-c9149558d4b8400839a4a65420bff77db962c53a.tar.zst
ferdium-server-c9149558d4b8400839a4a65420bff77db962c53a.zip
Fix the necessary env vars for building outside of docker
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 9fba794..a65ccf1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -19,8 +19,7 @@ LABEL maintainer="ferdium"
19# TODO: Shouldn't we set 'NODE_ENV=production' when running in production mode? 19# TODO: Shouldn't we set 'NODE_ENV=production' when running in production mode?
20ENV HOST=0.0.0.0 PORT=3333 DATA_DIR="/data" 20ENV HOST=0.0.0.0 PORT=3333 DATA_DIR="/data"
21 21
22RUN apk add --no-cache sqlite-libs curl su-exec 22RUN apk add --no-cache sqlite-libs curl su-exec python3 make g++ py3-pip git py3-pip
23RUN apk add --no-cache python3 make g++ py3-pip git py3-pip
24# The next command is needed for sqlite3 install command executed by node-gyp 23# The next command is needed for sqlite3 install command executed by node-gyp
25RUN ln -s /usr/bin/python3 /usr/bin/python 24RUN ln -s /usr/bin/python3 /usr/bin/python
26 25