Skip to content

Commit

Permalink
fix(docker): make keywords uppercase (#344)
Browse files Browse the repository at this point in the history
The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match
More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
  • Loading branch information
tessus authored Aug 31, 2024
1 parent 4d0beab commit 82ea9f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.72.0-alpine3.18 as builder
FROM rust:1.72.0-alpine3.18 AS builder
WORKDIR /app
RUN apk update
RUN apk add --no-cache musl-dev
Expand Down

0 comments on commit 82ea9f1

Please sign in to comment.