From f4c44bb0399c90dbdc1ee488bc76d5afd0cdbd40 Mon Sep 17 00:00:00 2001 From: Michael Gibson Date: Fri, 22 May 2020 15:49:06 -0500 Subject: [PATCH] Added comments. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 42b39b6..55d473a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,4 @@ +# Build the ProtonMail Bridge. FROM golang:1.14-alpine as build ENV LANG C.UTF-8 RUN apk add --no-cache \ @@ -11,6 +12,7 @@ RUN git clone https://github.com/ProtonMail/proton-bridge.git proton-bridge WORKDIR /usr/src/proton-bridge RUN make build-nogui +# Create a container for the ProtonMail Bridge. FROM alpine:edge ENV LANG C.UTF-8 COPY --from=build /usr/src/proton-bridge/Desktop-Bridge /bin/protonmail-bridge