This commit is contained in:
theadam 2025-01-11 12:04:53 +01:00
commit f45b3ae8b8
10 changed files with 70877 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3-alpine
WORKDIR /app
ADD ./order.py ./order.py
ADD ./fetcher.py ./fetcher.py
ADD ./requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
CMD [ "python3", "/app/order.py" ]