icl-iot-weather/data_collector/Dockerfile
2021-01-06 13:09:09 +00:00

8 lines
126 B
Docker

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