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