network_inventory/Dockerfile

9 lines
247 B
Docker
Raw Normal View History

# Python 3.9.6
FROM python@sha256:736b76eb3f64778646ce0051fb5fed4dfbf67016e51563946230ca8bb40ac687
2019-06-10 20:59:46 +02:00
ENV PYTHONUNBUFFERED 1
ADD . /code
WORKDIR /code
RUN pip install wheel
2019-07-13 12:37:58 +02:00
RUN pip install -r requirements/docker.txt
2020-07-04 11:54:55 +02:00
CMD ["/bin/bash", "/code/run.sh"]