diff --git a/Api.Dockerfile b/Api.Dockerfile index a0b55a29..f4920c44 100644 --- a/Api.Dockerfile +++ b/Api.Dockerfile @@ -1,5 +1,5 @@ FROM das-api/builder AS files -FROM rust:1.79-slim-bullseye +FROM rust:1.83-slim-bullseye ARG APP=/usr/src/app RUN apt update \ && apt install -y curl ca-certificates tzdata \ diff --git a/Builder.Dockerfile b/Builder.Dockerfile index a981b36c..ce42b085 100644 --- a/Builder.Dockerfile +++ b/Builder.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.79-bullseye AS builder +FROM rust:1.83-bullseye AS builder RUN apt-get update -y && \ apt-get install -y build-essential make git @@ -20,6 +20,6 @@ WORKDIR /rust RUN --mount=type=cache,target=/rust/target,id=das-rust \ cargo build --release --bins && cp `find /rust/target/release -maxdepth 1 -type f | sed 's/^\.\///' | grep -v "\." ` /rust/bins -FROM rust:1.79-slim-bullseye as final +FROM rust:1.83-slim-bullseye as final COPY --from=builder /rust/bins /das/ CMD echo "Built the DAS API bins!" diff --git a/Ingest.Dockerfile b/Ingest.Dockerfile index 8ff559bf..b8b8f0c0 100644 --- a/Ingest.Dockerfile +++ b/Ingest.Dockerfile @@ -1,5 +1,5 @@ FROM das-api/builder AS files -FROM rust:1.79-slim-bullseye +FROM rust:1.83-slim-bullseye ARG APP=/usr/src/app RUN apt update \ && apt install -y curl ca-certificates tzdata \ diff --git a/Load.Dockerfile b/Load.Dockerfile index 91e754c4..f12283cf 100644 --- a/Load.Dockerfile +++ b/Load.Dockerfile @@ -1,5 +1,5 @@ FROM das-api/builder AS files -FROM rust:1.79-slim-bullseye +FROM rust:1.83-slim-bullseye ARG APP=/usr/src/app RUN apt update \ && apt install -y curl ca-certificates tzdata \ diff --git a/Migrator.Dockerfile b/Migrator.Dockerfile index e21f7d77..c2c74cd2 100644 --- a/Migrator.Dockerfile +++ b/Migrator.Dockerfile @@ -1,6 +1,6 @@ FROM das-api/builder AS files -FROM rust:1.79-bullseye +FROM rust:1.83-bullseye COPY init.sql /init.sql ENV INIT_FILE_PATH=/init.sql COPY --from=files /das/migration /bins/migration diff --git a/Proxy.Dockerfile b/Proxy.Dockerfile index cfee4fb6..a17de6dc 100644 --- a/Proxy.Dockerfile +++ b/Proxy.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.79-bullseye AS builder +FROM rust:1.83-bullseye AS builder RUN cargo install wasm-pack RUN mkdir /rust