From afa4fa3b94c54ee5ead69a7fd70fc62109d246d4 Mon Sep 17 00:00:00 2001 From: Michael Danenberg <56533526+danenbm@users.noreply.github.com> Date: Thu, 17 Aug 2023 00:21:54 -0700 Subject: [PATCH] Update to Rust 1.69 docker image (#106) --- Api.Dockerfile | 4 ++-- Ingest.Dockerfile | 4 ++-- Load.Dockerfile | 2 +- Migrator.Dockerfile | 2 +- Proxy.Dockerfile | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Api.Dockerfile b/Api.Dockerfile index 57aef7a3..0db4e051 100644 --- a/Api.Dockerfile +++ b/Api.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.65-bullseye AS chef +FROM rust:1.69-bullseye AS chef RUN cargo install cargo-chef FROM chef AS planner COPY das_api /rust/das_api/ @@ -19,7 +19,7 @@ COPY das_api . # Build application RUN cargo build --release -FROM rust:1.65-slim-bullseye +FROM rust:1.69-slim-bullseye ARG APP=/usr/src/app RUN apt update \ && apt install -y curl ca-certificates tzdata \ diff --git a/Ingest.Dockerfile b/Ingest.Dockerfile index c41aaa34..797d5427 100644 --- a/Ingest.Dockerfile +++ b/Ingest.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.65-bullseye AS chef +FROM rust:1.69-bullseye AS chef RUN cargo install cargo-chef FROM chef AS planner COPY nft_ingester /rust/nft_ingester/ @@ -19,7 +19,7 @@ COPY nft_ingester . # Build application RUN cargo build --release -FROM rust:1.65-slim-bullseye +FROM rust:1.69-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 f49eb2a9..64e2f092 100644 --- a/Load.Dockerfile +++ b/Load.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.65-bullseye AS chef +FROM rust:1.69-bullseye AS chef RUN cargo install cargo-chef FROM chef AS planner COPY tests/load_generation /rust/load_generation/ diff --git a/Migrator.Dockerfile b/Migrator.Dockerfile index 211f5214..4cbb797e 100644 --- a/Migrator.Dockerfile +++ b/Migrator.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.65-bullseye +FROM rust:1.69-bullseye COPY init.sql /init.sql COPY migration /migration ENV INIT_FILE_PATH=/init.sql diff --git a/Proxy.Dockerfile b/Proxy.Dockerfile index 271fa781..53746719 100644 --- a/Proxy.Dockerfile +++ b/Proxy.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.65-bullseye AS builder +FROM rust:1.69-bullseye AS builder COPY ./metaplex-rpc-proxy /rust/metaplex-rpc-proxy WORKDIR /rust/metaplex-rpc-proxy RUN cargo install wasm-pack