Install from src and not pip package

This commit is contained in:
Esteban Sánchez 2020-10-24 10:39:40 +02:00
parent 17ebcb0834
commit a53c7ae08b

View file

@ -5,7 +5,9 @@ RUN apk add --update --no-cache \
python3 python3
# Install package # Install package
RUN pip3 install prometheus-qbittorrent-exporter==1.0.2 WORKDIR /code
COPY . .
RUN pip3 install .
ENV QBITTORRENT_HOST="" ENV QBITTORRENT_HOST=""
ENV QBITTORRENT_PORT="" ENV QBITTORRENT_PORT=""