mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-24 14:31:51 +01:00
* docs(caddy): update documentation with remote Dockerfile build * update doc version script
9 lines
225 B
Docker
9 lines
225 B
Docker
ARG CADDY_VERSION=2.8.4
|
|
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 |