From 5e9d84fa94b00e892892ec5bb4bad9a8fc2ea095 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Fri, 28 Jun 2024 09:43:49 -0400 Subject: [PATCH] Correctly copy directories --- Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 80308df..9559941 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,10 +5,9 @@ WORKDIR /usr/src/app COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt -COPY views ./ -COPY static ./ -COPY words ./ -COPY app.py ./ -COPY thesethreewords.py ./ +COPY ./views/ ./views/ +COPY ./static/ ./static/ +COPY ./words/ ./words/ +COPY *.py ./ -CMD [ "ls", "-lh", "." ] \ No newline at end of file +CMD [ "python", "./app.py" ] \ No newline at end of file