move all docker runs to separate lines to find the error

This commit is contained in:
Luke Robles 2023-05-17 19:17:03 -07:00
parent cc1dd2435d
commit 9d5627b01d

View File

@ -3,7 +3,8 @@ ADD app/requirements.txt /requirements.txt
RUN pip install --default-timeout=100 --no-cache-dir -q -r requirements.txt
FROM python:3.8-slim
RUN apt-get update && apt-get install -y --no-install-recommends imagemagick
RUN apt-get update
RUN apt-get install -y --no-install-recommends imagemagick
RUN apt-get autoremove -y
RUN apt-get purge -y --auto-remove
RUN rm -rf /var/lib/apt/lists/* /root