From 166a822fb0118ae0d19977fcc8712fc0795baef2 Mon Sep 17 00:00:00 2001 From: Simon Ungar Felding Date: Tue, 10 Dec 2024 12:24:16 +0100 Subject: [PATCH] add building the vault editor for protomailv3 --- build/Dockerfile | 3 ++- build/build.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index 2253a17..c2aec15 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /build/ COPY build.sh VERSION /build/ RUN bash build.sh -FROM debian:sid-slim +FROM debian:sid LABEL maintainer="Xiaonan Shen " # These are only exported if running as root @@ -29,5 +29,6 @@ COPY gpgparams entrypoint.sh /protonmail/ # Copy protonmail COPY --from=build /build/proton-bridge/bridge /protonmail/ COPY --from=build /build/proton-bridge/proton-bridge /protonmail/ +COPY --from=build /build/proton-bridge/vault-editor /protonmail/ ENTRYPOINT ["bash", "/protonmail/entrypoint.sh"] diff --git a/build/build.sh b/build/build.sh index 91f2772..7b45e05 100644 --- a/build/build.sh +++ b/build/build.sh @@ -20,4 +20,4 @@ if [[ $ARCH == "armv7l" ]] ; then fi # Build -make build-nogui +make build-nogui vault-editor