diff --git a/client/Dockerfile b/client/Dockerfile new file mode 100644 index 0000000..e1944b9 --- /dev/null +++ b/client/Dockerfile @@ -0,0 +1,9 @@ +FROM alpine + +WORKDIR /app/ +RUN apk --update --no-cache add python3 py3-requests + +COPY ./*.py ./ + +ENTRYPOINT ["python"] +CMD ["dispatch-query.py"]