learn-pr-ovh-eco-autoorder/Dockerfile

11 lines
206 B
Text
Raw Normal View History

2025-01-11 12:04:53 +01:00
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" ]