From c31937fd10f54cab0c02df2dc119150e485d530c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Silva?= Date: Wed, 29 Nov 2023 15:27:47 +0000 Subject: [PATCH] Fixed typo in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4951bf7b9..8f04fe510 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y pkg-config python3-dev default-libmysql WORKDIR /app # Copy the current directory contents into the container at /app -COPY . /app +COPY app/ /app # Create a virtual environment and install dependencies RUN python -m venv /venv