2020-04-15 04:01:07 -07:00
|
|
|
FROM ubuntu:latest
|
2020-04-14 17:59:21 -07:00
|
|
|
LABEL maintainer="Xiaonan Shen <s@sxn.dev>"
|
|
|
|
|
|
|
|
|
|
EXPOSE 25/tcp
|
|
|
|
|
EXPOSE 143/tcp
|
|
|
|
|
|
2020-04-15 00:17:01 -07:00
|
|
|
# Copy bash scripts
|
|
|
|
|
COPY gpgparams install.sh entrypoint.sh releaserc /protonmail/
|
2020-04-14 17:59:21 -07:00
|
|
|
|
|
|
|
|
# Install dependencies and protonmail bridge
|
2020-04-14 22:31:20 -07:00
|
|
|
RUN bash /protonmail/install.sh
|
2020-04-14 17:59:21 -07:00
|
|
|
|
2020-04-14 22:31:20 -07:00
|
|
|
ENTRYPOINT ["bash", "/protonmail/entrypoint.sh"]
|