From 674ad542bb2ee39b892951a13619fdf094871c66 Mon Sep 17 00:00:00 2001 From: maany Date: Mon, 15 Apr 2024 00:22:19 +0200 Subject: [PATCH] dont change the path in Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5f75296..2b30e43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,5 @@ FROM python:3.10 RUN apt-get update && apt-get install -y \ libgl1-mesa-glx \ && rm -rf /var/lib/apt/lists/* -WORKDIR /app -COPY . /app +COPY . . RUN pip install -r requirements.txt \ No newline at end of file