icl-iot-weather/Dockerfile
2020-10-19 15:08:23 +01:00

8 lines
117 B
Docker

FROM python:3.8
WORKDIR /code
COPY . .
RUN pip install -r requirements.txt
EXPOSE 80
EXPOSE 443
CMD "/code/sleep.py"