Skip to content

Commit

Permalink
Dockerfile: Fix casing
Browse files Browse the repository at this point in the history
The warnings are appearing inside GitHub Actions about the
inconsistent casing of keywords "from" and "as". Silence them.
  • Loading branch information
krnowak committed Feb 6, 2025
1 parent 44f7581 commit 50cd90c
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
Expand Up @@ -2,7 +2,7 @@
#
# golang:1.23-bookworm is based on debian:bookworm, this is important to ensure we have libc compatibility for the copied binary

FROM --platform=linux/amd64 docker.io/amd64/golang:1.23-bookworm as builder-amd64
FROM --platform=linux/amd64 docker.io/amd64/golang:1.23-bookworm AS builder-amd64
# We use dynamic linking when possible to reduce compile time and binary size
ENV CGO_ENABLED=1
COPY . /usr/src/mantle
Expand Down

0 comments on commit 50cd90c

Please sign in to comment.