diff --git a/Dockerfile b/Dockerfile index 06a06b6..4d9501b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,10 @@ LABEL description="tebarius Mysteryhelfer web" WORKDIR /app +RUN apt-get update \ + && apt-get install -y curl \ + && rm -rf /var/lib/apt/lists/* + COPY ./app/* . RUN pip3 install -r requirements.txt