aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 09db58f005dfd6ebd7191c10f3ec1cf7524e959a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 \
      git \
    apt-get clean all && \
    apt-get -y autoremove && \
    rm -rf \
      /var/lib/apt/lists/* \
      /tmp/*

CMD /bin/bash -c "cd /tmp/ && ./boostrap && ./configure && make"