silence pip install in docker file

This commit is contained in:
Luke Robles 2022-02-04 17:40:57 -08:00
parent 63f2412fe2
commit a02c2274fa

View File

@ -1,6 +1,6 @@
FROM python:3.8 as build
ADD app/requirements.txt /requirements.txt
RUN apt-get update && apt-get install -y libmagickwand-dev && pip install -rq requirements.txt
RUN apt-get update && apt-get install -y libmagickwand-dev && pip install -q -r requirements.txt
FROM python:3.8-slim
RUN apt-get update && apt-get install -y libmagickwand-dev