11 lines
No EOL
279 B
Docker
11 lines
No EOL
279 B
Docker
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"] |