Skip to content
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,4 +1,4 @@
FROM golang:1.16.15-alpine3.15 as build

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-develop-open / 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/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-develop-open / 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/

# git is not included, weirdly, so nothing with ext deps can build
RUN apk add git
Expand All @@ -8,7 +8,7 @@
&& export GIT_COMMIT=$(git rev-list -1 HEAD) \
&& go build -ldflags "-X main.gitCommit=$GIT_COMMIT" app/blobstore.go

FROM alpine:3.9.4
FROM alpine:3.22.1

# These ARGs values are passed in via the docker build command
ARG BUILD_DATE
Expand Down
Loading