protonmail-bridge-nextcoud-.../Dockerfile

21 lines
458 B
Docker
Raw Normal View History

2020-04-15 05:31:20 +00:00
FROM debian:buster-slim AS setup
COPY setup.sh /bin/
RUN bash /bin/setup.sh
2020-04-15 00:59:21 +00:00
FROM debian:buster-slim
LABEL maintainer="Xiaonan Shen <s@sxn.dev>"
EXPOSE 25/tcp
EXPOSE 143/tcp
# Copy gpg parameters and .deb installer
2020-04-15 05:31:20 +00:00
COPY gpgparams install.sh entrypoint.sh /protonmail/
COPY --from=setup /protonmail/protonmail.deb /protonmail/
2020-04-15 00:59:21 +00:00
# Install dependencies and protonmail bridge
2020-04-15 05:31:20 +00:00
RUN bash /protonmail/install.sh
2020-04-15 00:59:21 +00:00
2020-04-15 05:31:20 +00:00
ENTRYPOINT ["bash", "/protonmail/entrypoint.sh"]