aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 04eadc6a53edd3aebb517e5a295a44fa6c8a2e78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Alternate base image layer:
#FROM debian:buster-slim

FROM ubuntu:18.10

ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update && \
    apt-get -y install --no-install-recommends \
      gettext \
      make \
      python3 \
      python3-setuptools \
      python3-babel \
      python3-jinja2 && \
    apt-get clean all && \
    apt-get -y autoremove && \
    rm -rf \
      /var/lib/apt/lists/* \
      /tmp/*

CMD /bin/bash -c "cd /tmp/ && make"