prep for 18.04

This commit is contained in:
Marco Ochse
2018-03-25 18:35:32 +00:00
parent 60cb42b34d
commit c9a33870ff
57 changed files with 2268 additions and 178 deletions

View File

@ -1,9 +1,17 @@
FROM alpine
MAINTAINER MO
# Install packages
RUN apk -U upgrade && \
apk add autoconf automake bash build-base git libtool procps py-pip python python-dev && \
apk add autoconf \
automake \
bash \
build-base \
git \
libtool \
procps \
py-pip \
python \
python-dev && \
# Install libemu
git clone https://github.com/buffer/libemu /root/libemu/ && \
@ -25,7 +33,12 @@ RUN apk -U upgrade && \
chown -R mailoney:mailoney /opt/mailoney && \
# Clean up
apk del autoconf automake build-base git py-pip python-dev && \
apk del autoconf \
automake \
build-base \
git \
py-pip \
python-dev && \
rm -rf /root/* && \
rm -rf /var/cache/apk/*