This commit is contained in:
“xHuPo” 2024-08-05 14:31:56 +08:00
parent e1fd7b890a
commit ac6f3243ab
26 changed files with 1938 additions and 1 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM debian:stable-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
netbase \
&& rm -rf /var/lib/apt/lists/ \
&& apt-get autoremove -y && apt-get autoclean -y
ADD webhook .
CMD ["./webhook"]