aboutsummaryrefslogtreecommitdiffstats
path: root/service/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'service/Dockerfile')
-rw-r--r--service/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/service/Dockerfile b/service/Dockerfile
index c932e66..66952dc 100644
--- a/service/Dockerfile
+++ b/service/Dockerfile
@@ -1,6 +1,6 @@
FROM ubuntu:18.04
-RUN apt update && apt install -y --no-install-recommends socat build-essential
+RUN apt update && apt install -y --no-install-recommends socat gcc make libc6-dev libc6 libc-dev-bin
RUN addgroup --system service
RUN adduser --system --ingroup service --uid 1000 service
@@ -17,6 +17,7 @@ WORKDIR /service/
RUN make clean && make
EXPOSE 9000
+
ENV RESULTDIR=/data/uploads
ENTRYPOINT ["/entrypoint.sh"]