Skip to content

Bump golang from 1.23-alpine to 1.24-alpine in the all-docker-versions group #43

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

Closed
Closed
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#############################################
# Build
#############################################
FROM --platform=$BUILDPLATFORM golang:1.23-alpine as build
FROM --platform=$BUILDPLATFORM golang:1.24-alpine as build

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / build Dockerfile:final-static

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/

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / build Dockerfile:final-azcli

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/

RUN apk upgrade --no-cache --force
RUN apk add --update build-base make git
Expand All @@ -21,7 +21,7 @@
#############################################
# Test
#############################################
FROM gcr.io/distroless/static as test

Check warning on line 24 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / build Dockerfile:final-static

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/

Check warning on line 24 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / build Dockerfile:final-azcli

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/
USER 0:0
WORKDIR /app
COPY --from=build /go/src/github.com/webdevops/azure-auditor/azure-auditor .
Expand All @@ -31,7 +31,7 @@
#############################################
# final-azcli
#############################################
FROM mcr.microsoft.com/azure-cli as final-azcli

Check warning on line 34 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / build Dockerfile:final-static

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/

Check warning on line 34 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / build Dockerfile:final-azcli

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/
ENV LOG_JSON=1
WORKDIR /
COPY --from=test /app .
Expand All @@ -42,7 +42,7 @@
#############################################
# final-static
#############################################
FROM gcr.io/distroless/static as final-static

Check warning on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / build Dockerfile:final-static

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/

Check warning on line 45 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / build Dockerfile:final-azcli

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/
ENV LOG_JSON=1
WORKDIR /
COPY --from=test /app .
Expand Down
Loading