Skip to content

Commit

Permalink
Update to Rust 1.69 docker image (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
danenbm authored Aug 17, 2023
1 parent 3d17924 commit afa4fa3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Api.Dockerfile
Original file line number Diff line number Diff line change
@@ -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/
Expand All @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions Ingest.Dockerfile
Original file line number Diff line number Diff line change
@@ -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/
Expand All @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion Load.Dockerfile
Original file line number Diff line number Diff line change
@@ -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/
Expand Down
2 changes: 1 addition & 1 deletion Migrator.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Proxy.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit afa4fa3

Please sign in to comment.