Try with verbose pip

This commit is contained in:
Luke Robles 2023-05-18 08:02:52 -07:00
parent 73b88868e2
commit 6066a2019e

View File

@ -1,14 +1,13 @@
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 pip install setuptools-scm-git-archive RUN pip install --verbose --no-cache-dir -r requirements.txt
RUN pip install --default-timeout=100 --no-cache-dir -q -r requirements.txt
FROM python:3.8-slim FROM python:3.8-slim
RUN apt-get update RUN apt-get update && \
RUN apt-get install -y --no-install-recommends imagemagick apt-get install -y --no-install-recommends imagemagick &&\
RUN apt-get autoremove -y apt-get autoremove -y && \
RUN apt-get purge -y --auto-remove apt-get purge -y --auto-remove && \
RUN rm -rf /var/lib/apt/lists/* /root rm -rf /var/lib/apt/lists/* /root
COPY --from=0 /usr/local/lib/python3.8/site-packages /usr/local/lib/python3.8/site-packages COPY --from=0 /usr/local/lib/python3.8/site-packages /usr/local/lib/python3.8/site-packages
ADD app /app ADD app /app
CMD python /app/bot.py CMD python /app/bot.py