Files
sablier/plugins/caddy/Dockerfile
Alexis Couvreur bac489ba5e fix: bump to Go 1.23.6 (#516)
* chore(deps): bump to go1.23.6

* go work sync

* sync

* test(swarm): do not close channel to prevent log after test end

* bump caddy version dockerfile
2025-02-09 11:00:28 -05:00

11 lines
237 B
Docker

ARG CADDY_VERSION=2.9.1
FROM caddy:${CADDY_VERSION}-builder AS builder
COPY . .
RUN xcaddy build \
--with github.com/sablierapp/sablier/plugins/caddy=.
FROM caddy:${CADDY_VERSION}
COPY --from=builder /usr/bin/caddy /usr/bin/caddy