-
-
Notifications
You must be signed in to change notification settings - Fork 341
chore: upgrade goreleaser config #1153
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,13 +1,15 @@ | ||||||
| # syntax=docker/dockerfile:1 | ||||||
| FROM caddy:2-alpine | ||||||
|
|
||||||
| ARG TARGETPLATFORM | ||||||
|
|
||||||
| LABEL org.opencontainers.image.title=Mercure.rocks | ||||||
| LABEL org.opencontainers.image.description="Real-time made easy" | ||||||
| LABEL org.opencontainers.image.url=https://mercure.rocks | ||||||
| LABEL org.opencontainers.image.source=https://github.com/dunglas/mercure | ||||||
| LABEL org.opencontainers.image.licenses=AGPL-3.0-or-later | ||||||
| LABEL org.opencontainers.image.vendor="Kévin Dunglas" | ||||||
|
|
||||||
| COPY mercure /usr/bin/caddy | ||||||
| COPY ${TARGETPLATFORM}/mercure /usr/bin/caddy | ||||||
|
||||||
| COPY ${TARGETPLATFORM}/mercure /usr/bin/caddy | |
| COPY mercure /usr/bin/caddy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a significant architectural change migrating from the legacy
dockers+docker_manifestsapproach to the newerdockers_v2configuration. While this is a good modernization, the change should be thoroughly tested before merging, particularly:Consider adding a test build in CI to validate the Docker image builds before releasing.