mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
* build(deps): bump github.com/caddyserver/caddy/v2 in /plugins/caddy Bumps [github.com/caddyserver/caddy/v2](https://github.com/caddyserver/caddy) from 2.9.1 to 2.10.0. - [Release notes](https://github.com/caddyserver/caddy/releases) - [Changelog](https://github.com/caddyserver/caddy/blob/master/.goreleaser.yml) - [Commits](https://github.com/caddyserver/caddy/compare/v2.9.1...v2.10.0) --- updated-dependencies: - dependency-name: github.com/caddyserver/caddy/v2 dependency-version: 2.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * bump dockerfile version * use go 1.24.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexis Couvreur <alexiscouvreur.pro@gmail.com>
9 lines
226 B
Docker
9 lines
226 B
Docker
ARG CADDY_VERSION=2.10.0
|
|
FROM caddy:${CADDY_VERSION}-builder AS builder
|
|
|
|
RUN xcaddy build \
|
|
--with github.com/sablierapp/sablier/plugins/caddy
|
|
|
|
FROM caddy:${CADDY_VERSION}
|
|
|
|
COPY --from=builder /usr/bin/caddy /usr/bin/caddy |