Initial commit
This commit is contained in:
commit
7191bbbbd4
1 changed files with 15 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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"]
|
||||
|
Loading…
Reference in a new issue