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
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
LABEL org.opencontainers.image.description Claustroboard is a fun multiplayer, browser-based board game.
LABEL org.opencontainers.image.source https://github.com/omgtant/claustroboard

FROM node:24-slim AS frontend

WORKDIR /app
Expand Down Expand Up @@ -32,6 +29,8 @@
RUN go build -o claustroboard .

FROM scratch AS final
LABEL org.opencontainers.image.description Claustroboard is a fun multiplayer, browser-based board game.

Check warning on line 32 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
LABEL org.opencontainers.image.source https://github.com/omgtant/claustroboard

Check warning on line 33 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

WORKDIR /app

Expand Down
Loading