seperate pip installations

pull/20/head
JensDiemer 2020-11-13 09:26:58 +01:00
rodzic 27f3b00b6f
commit 67a9ec9725
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -8,10 +8,11 @@ RUN apt-get update \
&& apt autoremove \
&& apt -y full-upgrade \
&& rm -rf /var/lib/apt \
&& python3 -m pip install -U pip
&& python3 -m pip install -U pip \
&& pip install -U psycopg2-binary
WORKDIR /inventory
RUN pip install psycopg2-binary "pyinventory>=0.4.2"
RUN pip install "pyinventory>=0.4.2"