icl-iot-weather/lora_nodes/slave/Dockerfile
2020-12-21 20:41:25 +00:00

7 lines
120 B
Docker

FROM python:3.8
WORKDIR /code
COPY . .
RUN pip install requests
RUN pip install -r requirements.txt
CMD "/code/main.py"