diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 173792f..e043c76 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -58,7 +58,7 @@ jobs: file: ./build/Dockerfile tags: localbuild/protonmail-bridge:test build-args: | - version="${{ env.version }}" + version=${{ env.version }} - name: Scan image id: scan uses: anchore/scan-action@v6 @@ -135,7 +135,7 @@ jobs: provenance: true sbom: true build-args: | - version="${{ env.version }}" + version=${{ env.version }} - name: Export digest run: | diff --git a/deb/Dockerfile b/deb/Dockerfile index a431004..a0d8e2c 100644 --- a/deb/Dockerfile +++ b/deb/Dockerfile @@ -22,7 +22,7 @@ COPY gpgparams entrypoint.sh PACKAGE /protonmail/ COPY --from=build /protonmail.deb /tmp/protonmail.deb RUN apt-get update \ - && apt-get install -y --no-install-recommends /tmp/protonmail.deb socat pass libsecret-1-0 ca-certificates \ + && apt-get install -y --no-install-recommends /tmp/protonmail.deb socat pass libsecret-1-0 ca-certificates procps \ && rm -rf /var/lib/apt/lists/* CMD ["bash", "/protonmail/entrypoint.sh"]