mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-24 14:31:51 +01:00
* 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
11 lines
237 B
Docker
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 |