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