From 7585baa82feb07d312e3f1bc1c3fd785c2e519d5 Mon Sep 17 00:00:00 2001 From: Adam Hendel Date: Thu, 22 Feb 2024 09:28:46 -0600 Subject: [PATCH 1/2] install ssl --- registry/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/Dockerfile b/registry/Dockerfile index 5655a72d..6c2ae405 100644 --- a/registry/Dockerfile +++ b/registry/Dockerfile @@ -11,5 +11,5 @@ RUN cargo install --path . FROM quay.io/coredb/debian:11.6-slim COPY --from=builder /usr/local/cargo/bin/* /usr/local/bin/ RUN apt-get update -RUN apt-get install -y --no-install-recommends ca-certificates +RUN apt-get install -y --no-install-recommends ca-certificates libssl-dev RUN update-ca-certificates From 8bbdbb011fbb7faf7d5cd302a94f0b2f261af578 Mon Sep 17 00:00:00 2001 From: Adam Hendel Date: Thu, 22 Feb 2024 16:13:10 +0000 Subject: [PATCH 2/2] bump image versions --- registry/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/registry/Dockerfile b/registry/Dockerfile index 6c2ae405..8574ad58 100644 --- a/registry/Dockerfile +++ b/registry/Dockerfile @@ -8,8 +8,8 @@ RUN cargo build --release && \ RUN cargo install --path . # second stage. -FROM quay.io/coredb/debian:11.6-slim +FROM quay.io/tembo/debian:12.5-slim COPY --from=builder /usr/local/cargo/bin/* /usr/local/bin/ -RUN apt-get update -RUN apt-get install -y --no-install-recommends ca-certificates libssl-dev +RUN apt-get update && apt-get upgrade -y +RUN apt-get install -y --no-install-recommends ca-certificates RUN update-ca-certificates