tpotce/docker/mailoney/Dockerfile

48 lines
1.3 KiB
Text
Raw Normal View History

FROM alpine
# Install packages
2018-05-19 19:43:02 +00:00
RUN apk -U --no-cache add \
autoconf \
2018-03-25 18:35:32 +00:00
automake \
build-base \
git \
libtool \
py-pip \
python \
python-dev && \
# Install libemu
2018-05-19 19:43:02 +00:00
git clone --depth=1 https://github.com/buffer/libemu /root/libemu/ && \
cd /root/libemu/ && \
autoreconf -vi && \
./configure && \
make && \
make install && \
# Install libemu python wrapper
2018-05-19 19:43:02 +00:00
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir pylibemu && \
# Install mailoney from git
2018-05-19 19:43:02 +00:00
git clone --depth=1 https://github.com/awhitehatter/mailoney /opt/mailoney && \
# Setup user, groups and configs
addgroup -g 2000 mailoney && \
2018-05-19 19:43:02 +00:00
adduser -S -H -s /bin/ash -u 2000 -D -g 2000 mailoney && \
chown -R mailoney:mailoney /opt/mailoney && \
# Clean up
2018-05-19 19:43:02 +00:00
apk del --purge autoconf \
automake \
build-base \
git \
py-pip \
python-dev && \
rm -rf /root/* && \
rm -rf /var/cache/apk/*
# Set workdir and start glastopf
2018-03-31 21:44:11 +00:00
USER mailoney:mailoney
WORKDIR /opt/mailoney/
CMD ["/usr/bin/python","mailoney.py","-i","0.0.0.0","-p","2525","-s","mailserver","-t","schizo_open_relay"]