From daefa90858ea6291d9d09c6235f2be5526c2e0de Mon Sep 17 00:00:00 2001 From: Patrick Devaney Date: Fri, 3 Jan 2025 16:14:09 -0500 Subject: [PATCH] fixing github actions again --- tests/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Dockerfile b/tests/Dockerfile index 80d2fbb8..a10e0734 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -8,10 +8,10 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ PIP_DISABLE_PIP_VERSION_CHECK=1 \ PIP_DEFAULT_TIMEOUT=100 -# Set the working directory to the root of the project (relative to pyproject.toml) +# Set the working directory to the root of the project WORKDIR /usr/src/app -# Copy the entire project into the container +# Copy the entire project into the container (including pyproject.toml) COPY . . # Install Poetry