diff --git a/Dockerfile b/Dockerfile index c336b6d0..283a6eb5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,19 +5,22 @@ FROM python:3.12 ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 +SHELL ["/bin/bash", "-c"] + # Set work directory WORKDIR /app # Install dependencies COPY requirements.txt /app/ -RUN apt-get update && apt-get -y upgrade -RUN apt-get install libmagic1 -y -RUN apt-get install -y gettext - -# Install dependencies -RUN pip install --upgrade pip -RUN pip install -r requirements.txt +RUN <