blob: 7b17dc8732222aa6d8e8f35d6e02fe8dc963b520 (
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
24
|
# 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 \
sassc && \
apt-get clean all && \
apt-get -y autoremove && \
rm -rf \
/var/lib/apt/lists/* \
/tmp/*
CMD /bin/bash -c "cd /tmp/ && ./boostrap && ./configure && make"
|