diff options
author | Maxim De Clercq <maximdeclercq00@gmail.com> | 2022-01-23 18:09:14 +0100 |
---|---|---|
committer | Maxim De Clercq <maximdeclercq00@gmail.com> | 2022-01-23 18:09:14 +0100 |
commit | c7560b3502d27a49f935c347458df6421459c485 (patch) | |
tree | 7b2c63825f94692512a7871c6a4b2958bdf85c76 /docker | |
parent | c2ad2b3dd747e7a8baa5ff2f9ade8edb92204aa6 (diff) | |
download | conduit-c7560b3502d27a49f935c347458df6421459c485.zip |
fix: remove libgcc dependency in ci builds since the binary is ensured to be statically compiled
Diffstat (limited to 'docker')
-rw-r--r-- | docker/ci-binaries-packaging.Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docker/ci-binaries-packaging.Dockerfile b/docker/ci-binaries-packaging.Dockerfile index f460310..a6339be 100644 --- a/docker/ci-binaries-packaging.Dockerfile +++ b/docker/ci-binaries-packaging.Dockerfile @@ -9,6 +9,7 @@ FROM docker.io/alpine:3.15.0 AS runner + # Standard port on which Conduit launches. # You still need to map the port when using the docker command or docker-compose. EXPOSE 6167 @@ -18,10 +19,8 @@ ENV CONDUIT_CONFIG="/srv/conduit/conduit.toml" # Conduit needs: # ca-certificates: for https -# libgcc: Apparently this is needed, even if I (@jfowl) don't know exactly why. But whatever, it's not that big. RUN apk add --no-cache \ - ca-certificates \ - libgcc + ca-certificates ARG CREATED |