ScoDoc/prod/Dockerfile

15 lines
204 B
Docker
Raw Normal View History

2024-05-27 09:47:02 +02:00
FROM debian:bullseye
RUN apt install -y openssh-server openssh
# HTTPS
EXPOSE 443/tcp
# HTTP
EXPOSE 80/tcp
# Unsecure SMTP
EXPOSE 25/tcp
# Secure SMTP (SMTPS)
EXPOSE 587/tcp
ENTRYPOINT [ "/bin/bash" ]