Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use rust to bullseye #519

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/indexer-proxy/proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subql-indexer-proxy"
version = "2.6.2"
version = "2.6.3-beta.2"
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions apps/indexer-proxy/proxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder
FROM rust:buster AS builder
FROM rust:bullseye AS builder
RUN update-ca-certificates
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true

Expand All @@ -18,7 +18,7 @@ RUN --mount=type=cache,id=cargo_bin,target=~/.cargo/bin/ \
cargo update && cargo build --release && mv /subql/target/release/subql-indexer-proxy /subql/

# Final image
FROM debian:buster-slim
FROM debian:bullseye-slim

RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && \
apt-get --assume-yes install curl && \
Expand Down
Loading