10 lines
272 B
Docker
10 lines
272 B
Docker
ARG UPSTREAM=2.3.10
|
|
FROM analogic/poste.io:$UPSTREAM
|
|
RUN apt-get update && apt-get install less # 'less' is Useful for debugging
|
|
|
|
# Default to listening only on IPs bound to the container hostname
|
|
ENV LISTEN_ON=host
|
|
ENV SEND_ON=
|
|
|
|
COPY files /
|
|
RUN /patches && rm /patches
|