protonmail-bridge-nextcoud-.../build/Dockerfile

34 lines
952 B
Docker
Raw Normal View History

# Use carlosedp/golang for riscv64 support
2024-09-09 21:45:17 +00:00
FROM golang:1.21-bookworm AS build
2020-06-01 13:51:24 +00:00
# Install dependencies
RUN apt-get update && apt-get install -y git build-essential libsecret-1-dev
2020-06-01 13:51:24 +00:00
# Build
WORKDIR /build/
COPY build.sh VERSION /build/
RUN bash build.sh
FROM ubuntu:jammy
2020-06-01 13:51:24 +00:00
LABEL maintainer="Xiaonan Shen <s@sxn.dev>"
EXPOSE 25/tcp
EXPOSE 143/tcp
# Install dependencies and protonmail bridge
2024-09-09 21:45:17 +00:00
RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \
--mount=target=/var/cache/apt,type=cache,sharing=locked \
rm -f /etc/apt/apt.conf.d/docker-clean \
&& apt-get update \
&& apt-get -y --no-install-recommends install \
libc6 socat pass libsecret-1-0 ca-certificates
2020-06-01 13:51:24 +00:00
# Copy bash scripts
COPY gpgparams entrypoint.sh /protonmail/
# Copy protonmail
COPY --from=build /build/proton-bridge/bridge /protonmail/
COPY --from=build /build/proton-bridge/proton-bridge /protonmail/
2020-06-01 13:51:24 +00:00
ENTRYPOINT ["bash", "/protonmail/entrypoint.sh"]