From dc6383ba6c1f586206de6b557969e16505406915 Mon Sep 17 00:00:00 2001 From: Matthias Bilger Date: Sat, 3 Oct 2020 12:35:30 +0200 Subject: [PATCH] fixed dockerfile for unsupported options in pip --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2d6995a..86ce0e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file +CMD ["python", "./bibcheck.py"]