aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile22
1 files changed, 22 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 00000000..04eadc6a
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,22 @@
1# Alternate base image layer:
2#FROM debian:buster-slim
3
4FROM ubuntu:18.10
5
6ENV DEBIAN_FRONTEND noninteractive
7
8RUN apt-get update && \
9 apt-get -y install --no-install-recommends \
10 gettext \
11 make \
12 python3 \
13 python3-setuptools \
14 python3-babel \
15 python3-jinja2 && \
16 apt-get clean all && \
17 apt-get -y autoremove && \
18 rm -rf \
19 /var/lib/apt/lists/* \
20 /tmp/*
21
22CMD /bin/bash -c "cd /tmp/ && make"