fixed dockerfile for unsupported options in pip
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-10-03 12:35:30 +02:00
parent 02e25a720d
commit dc6383ba6c

View File

@@ -4,7 +4,7 @@ FROM base as builder
RUN mkdir /install
WORKDIR /install
COPY requirements.txt /requirements.txt
RUN pip install --install-option="--prefix=/install" -r /requirements.txt
RUN pip install --prefix=/install -r /requirements.txt
FROM base
COPY --from=builder /install /usr/local
@@ -14,4 +14,4 @@ WORKDIR /home/appuser
USER appuser
COPY bibcheck.py ./
CMD ["python", "./bibcheck.py"]
CMD ["python", "./bibcheck.py"]