WatchFlashPy/Dockerfile
2020-04-01 20:59:38 -04:00

7 lines
115 B
Docker

FROM python:alpine3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 80
CMD python ./print.py