From 4304954bc34cb066d72853e2d5635383a452c0d5 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Mon, 19 Feb 2024 02:27:31 -0500 Subject: [PATCH] hotfix: change dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 73ce7f5..4982163 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,10 @@ ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 # Set the working directory in the container -WORKDIR /app +WORKDIR / # Copy the current directory contents into the container at /app -COPY . /app +COPY . / # Install any needed dependencies specified in requirements.txt RUN pip install --no-cache-dir -r requirements.txt