diff --git a/agency/Dockerfile b/agency/Dockerfile index a38dc05..38ec9d2 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 9905e17..26c3c2b 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