Skip to content
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
4 changes: 2 additions & 2 deletions container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# $ docker run --rm -i hadolint/hadolint < Dockerfile

# ---------- build taganaka/SpeedTest binary ----------
FROM alpine:3.21 as compiler
FROM alpine:3.22 as compiler

Check warning on line 8 in container/Dockerfile

View workflow job for this annotation

GitHub Actions / build image 📦

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/

# install build framework and libraries
# hadolint ignore=DL3018
Expand All @@ -21,7 +21,7 @@
&& make

# --------- build application container ----------
FROM alpine:3.21 as runtime
FROM alpine:3.22 as runtime

Check warning on line 24 in container/Dockerfile

View workflow job for this annotation

GitHub Actions / build image 📦

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/

# install necessary packages and fonts
# hadolint ignore=DL3018
Expand Down