diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4db19a3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM debian:stable-slim + +RUN apt-get update && apt-get install ca-certificates -y + +COPY ./capture /usr/bin/capture + +WORKDIR /app + +ENTRYPOINT ["/usr/bin/capture"]