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.26.1-alpine as go-builder
FROM golang:1.26.2-alpine as go-builder

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build and push

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/

WORKDIR /usr/src/app

Expand All @@ -11,14 +11,14 @@
RUN ["apk", "add", "gcc", "imagemagick-dev", "imagemagick-heic", "imagemagick-jpeg", "imagemagick-webp", "make", "musl-dev"]
RUN ["make", "-f", "backgrounds.mk", "backgrounds/backgrounds.json"]

FROM python:3 as python-builder

Check warning on line 14 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build and push

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/

COPY fa-src/ fa-src/

RUN ["pip", "install", "fonttools[woff]"]
RUN ["make", "-C", "fa-src"]

FROM node:25-alpine as node-builder

Check warning on line 21 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build and push

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/

COPY --from=go-builder /usr/src/app /build
WORKDIR /build
Expand Down
Loading