feat: add docker build

This commit is contained in:
2024-02-17 17:03:23 +01:00
parent d6a2f8ec15
commit a4a868e899

9
client/Dockerfile Normal file
View File

@@ -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"]