Initial commit: wb-mock skeleton

This commit is contained in:
root
2026-07-23 19:02:03 +03:00
commit 93ebcf4406
9 changed files with 217 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM alpine:3.20
RUN apk --no-cache add ca-certificates tzdata
COPY wb-mock /usr/local/bin/wb-mock
EXPOSE 8080
ENV PORT=8080
CMD ["/usr/local/bin/wb-mock"]