Andreas Fahrecker 06ed76e53c
All checks were successful
andreas-personal/protonmail-bridge-docker/pipeline/head This commit looks good
Fixed Path of COPY in Dockerfile
2024-03-16 01:50:28 +01:00

14 lines
279 B
Docker

FROM debian:buster
WORKDIR /opt/protonmail
# Copy bash scripts
COPY gpgparams install.sh entrypoint.sh VERSION /opt/protonmail/
# Install dependencies and protonmail bridge
RUN bash install.sh
ENTRYPOINT ["bash", "/opt/protonmail/entrypoint.sh"]
EXPOSE 25/tcp
EXPOSE 143/tcp