Skip to content

Commit

Permalink
docker: fix WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do n…
Browse files Browse the repository at this point in the history
…ot match
  • Loading branch information
vndroid authored Jan 28, 2025
1 parent 1785670 commit ad14c7c
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit ad14c7c

Please sign in to comment.