From 9d5627b01d65f8970e13137ff5a7e79c746e2386 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 17 May 2023 19:17:03 -0700 Subject: [PATCH] move all docker runs to separate lines to find the error --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 13f6821f..7f2d1757 100755 --- a/Dockerfile +++ b/Dockerfile @@ -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