network_inventory/backend/Dockerfile

8 lines
162 B
Docker
Raw Normal View History

2019-06-10 20:59:46 +02:00
FROM python:3
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"]