network_inventory/Dockerfile
2019-06-10 20:59:46 +02:00

8 lines
153 B
Docker

FROM python:3
ENV PYTHONUNBUFFERED 1
ADD . /code
WORKDIR /code
RUN pip install wheel
RUN pip install -r requirements.txt
WORKDIR /code/network_inventory