Skip to content

Commit

Permalink
Update dockerfile non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 4, 2024
1 parent 136bf8d commit 6dc0e98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion agency/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 6dc0e98

Please sign in to comment.