From 6dc0e987559b7d634356df3c3bdccc30fa9705d8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 4 Jul 2024 09:37:12 +0000 Subject: [PATCH] Update dockerfile non-major dependencies --- agency/Dockerfile | 2 +- server/Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/agency/Dockerfile b/agency/Dockerfile index a38dc058..38ec9d23 100644 --- a/agency/Dockerfile +++ b/agency/Dockerfile @@ -1,5 +1,5 @@ # pull official base image -FROM python:3.12.3-slim +FROM python:3.12.4-slim # install system dependencies RUN apt-get update && apt-get -y install libpq-dev gcc git diff --git a/server/Dockerfile b/server/Dockerfile index 9905e176..26c3c2bd 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,18 +1,18 @@ -FROM rust:1.77 AS planner +FROM rust:1.79 AS planner WORKDIR app RUN cargo install cargo-chef COPY . . RUN cargo chef prepare --recipe-path recipe.json -FROM rust:1.77 AS cacher +FROM rust:1.79 AS cacher WORKDIR app RUN cargo install cargo-chef COPY --from=planner /app/recipe.json recipe.json # Build our project dependencies, not our application! RUN cargo chef cook --release --recipe-path recipe.json -FROM rust:1.77 AS builder +FROM rust:1.79 AS builder RUN apt-get update && apt-get install -y protobuf-compiler