aboutsummaryrefslogtreecommitdiffstats
path: root/appimage/Dockerfile
blob: 174cdc98e5fce854ba8e7fff62993e4adb73cd0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
FROM ubuntu:14.04
RUN apt-get update && \
    apt-get -y install screen autoconf git \
       build-essential zlib1g-dev libjpeg-dev \
       docbook-xsl fop xsltproc \
       inkscape busybox wget fuse && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*
COPY entrypoint /entrypoint
RUN chmod +x /entrypoint
ENTRYPOINT [ "/entrypoint" ]