Initial commit

This commit is contained in:
paul 2020-08-12 09:34:51 +02:00
commit 7191bbbbd4
1 changed files with 15 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM debian:buster
EXPOSE 24
RUN DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y --no-install-recommends \
postgrey && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
VOLUME /var/lib/postgrey
ENTRYPOINT ["postgrey", "--inet=0.0.0.0:24"]