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

Fix the build warning #1926

Merged
merged 1 commit into from
Jan 28, 2025
Merged
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.80 as build
FROM rust:1.80 AS build

WORKDIR /build

Expand All @@ -14,7 +14,7 @@ RUN cargo build --release --manifest-path apps/Cargo.toml
##
## quiche-base: quiche image for apps
##
FROM debian:latest as quiche-base
FROM debian:latest AS quiche-base

RUN apt-get update && apt-get install -y ca-certificates && \
rm -rf /var/lib/apt/lists/*
Expand All @@ -32,7 +32,7 @@ ENV RUST_LOG=info
## https://github.com/marten-seemann/quic-network-simulator
## https://github.com/marten-seemann/quic-interop-runner
##
FROM martenseemann/quic-network-simulator-endpoint:latest as quiche-qns
FROM martenseemann/quic-network-simulator-endpoint:latest AS quiche-qns

WORKDIR /quiche

Expand Down
Loading