forked from Mouws/protonmail-bridge-nextcoud-podman
GLIBC dependency issue highlighted in https://github.com/shenxn/protonmail-bridge-docker/issues/79 is caused by v3 of the bridge not supporting bionic. This PR simply updates the "deb" version to match the "build" version which is already on ubuntu:jammy.
16 lines
311 B
Docker
16 lines
311 B
Docker
FROM ubuntu:jammy
|
|
LABEL maintainer="Xiaonan Shen <s@sxn.dev>"
|
|
|
|
EXPOSE 25/tcp
|
|
EXPOSE 143/tcp
|
|
|
|
WORKDIR /protonmail
|
|
|
|
# Copy bash scripts
|
|
COPY gpgparams install.sh entrypoint.sh VERSION /protonmail/
|
|
|
|
# Install dependencies and protonmail bridge
|
|
RUN bash install.sh
|
|
|
|
ENTRYPOINT ["bash", "/protonmail/entrypoint.sh"]
|