silence pip install in docker file

This commit is contained in:
Luke Robles 2022-02-04 17:40:57 -08:00
parent 490550ef5d
commit 608e96419f

View File

@ -1,6 +1,6 @@
FROM python:3.8 as build FROM python:3.8 as build
ADD app/requirements.txt /requirements.txt 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 FROM python:3.8-slim
RUN apt-get update && apt-get install -y libmagickwand-dev RUN apt-get update && apt-get install -y libmagickwand-dev