WF test using selhst icons

This commit is contained in:
2025-08-12 20:48:30 +05:30
parent a6d4e3567c
commit 0f38164a2e
4 changed files with 111 additions and 8 deletions

View File

@@ -1,10 +1,11 @@
FROM caddy:2.10.0-builder AS builder
FROM node:18-alpine
WORKDIR /app
RUN xcaddy build \
--with github.com/hslatman/caddy-crowdsec-bouncer/http \
--with github.com/hslatman/caddy-crowdsec-bouncer/layer4 \
--with github.com/hslatman/caddy-crowdsec-bouncer/appsec
COPY package.json ./
RUN npm install
FROM caddy:2.10.0
COPY server.js .
COPY --from=builder /usr/bin/caddy /usr/bin/caddy
EXPOSE 4050
CMD ["node", "server.js"]