From cc1dd2435dabf25808e61d0933418caecee70b8d Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 17 May 2023 19:15:38 -0700 Subject: [PATCH] move all docker runs to separate lines to find the error --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 15c0c0b7..13f6821f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,10 @@ 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 \ - && apt-get autoremove -y \ - && apt-get purge -y --auto-remove \ - && rm -rf /var/lib/apt/lists/* /root +RUN apt-get update && 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 COPY --from=0 /usr/local/lib/python3.8/site-packages /usr/local/lib/python3.8/site-packages ADD app /app CMD python /app/bot.py