PiSwitch/Dockerfile-2

9 lines
126 B
Plaintext
Raw Permalink 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","server.py"]