From 44ca25973745218067f04d5062514b282a8b6bae Mon Sep 17 00:00:00 2001 From: oedokumaci Date: Wed, 5 Jun 2024 10:06:57 +0300 Subject: [PATCH] fix: workdir already changed --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6a80280..d3bd84b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM python:3.11 WORKDIR /usr/src/app # Copy the current directory contents into the container -COPY . /usr/src/app +COPY . . # Install PDM (Python Dependency Manager) RUN pip install pdm