Signed by hannaSSH key fingerprint: SHA256:4g9cWhkAAw8gwqhJUcVbSnGEvdGwklW+1Aa/fMUu59k
Dockerfile +4 −3
| @@ -9,10 +9,11 @@ | |||
| 9 | # ---- Builder ---- | 9 | # ---- Builder ---- |
| 10 | FROM rustlang/rust:nightly-slim AS builder | 10 | FROM rustlang/rust:nightly-slim AS builder |
| 11 | 11 | ||
| 12 | # pkg-config + libssl-dev for native-tls (mail); cmake for aws-lc-sys (ssh) and | 12 | # pkg-config + libssl-dev for native-tls (mail); cmake + a C/C++ toolchain for |
| 13 | # the vendored libgit2 build; git for build scripts. | 13 | # aws-lc-sys (SSH and the S3 client's aws-lc-rs TLS, which builds C++ sources); |
| 14 | # git for build scripts. | ||
| 14 | RUN apt-get update && apt-get install -y --no-install-recommends \ | 15 | RUN apt-get update && apt-get install -y --no-install-recommends \ |
| 15 | pkg-config libssl-dev cmake git ca-certificates \ | 16 | pkg-config libssl-dev cmake g++ git ca-certificates \ |
| 16 | && rm -rf /var/lib/apt/lists/* | 17 | && rm -rf /var/lib/apt/lists/* |
| 17 | 18 | ||
| 18 | WORKDIR /build | 19 | WORKDIR /build |