PiSwitch/Dockerfile-1

9 lines
129 B
Plaintext
Raw Normal View History

2021-03-22 21:12:58 +01:00
FROM python:3-alpine
COPY . /code/
RUN pip install -r /code/requirements.txt
WORKDIR /code/src/
CMD ["python","scheduler.py"]