0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-08 06:30:05 +00:00

Switch off pip's verbose output

This commit is contained in:
Pēteris Caune 2024-12-18 08:51:29 +02:00
parent 46c51787bb
commit bc5354b05b
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2

View file

@ -6,7 +6,7 @@ RUN \
apt-get install -y build-essential curl libpq-dev libmariadb-dev libffi-dev libpcre2-dev libssl-dev libcurl4-openssl-dev libpython3-dev pkg-config
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- --profile minimal -y
ENV PATH=$PATH:/root/.cargo/bin
RUN pip wheel -vv --wheel-dir /wheels apprise uwsgi mysqlclient minio psycopg-c==3.2.3 -r /tmp/requirements.txt
RUN pip wheel --wheel-dir /wheels apprise uwsgi mysqlclient minio psycopg-c==3.2.3 -r /tmp/requirements.txt
COPY . /opt/healthchecks/
RUN \