Fix dockerfile typo

This commit is contained in:
Logan Cusano
2025-04-27 00:48:45 -04:00
parent 6ea16b7402
commit 9ade2f9249

View File

@@ -11,7 +11,7 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the client code into the container
COPY .app .
COPY ./app/ .
# Define environment variable for the server host
# This will be set by the Makefile when running the container