From 2c3fb41e5c6dd94bce2ead9e125b20df959d081c Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Tue, 5 Nov 2024 11:24:42 -0500 Subject: [PATCH] Add staticfiles directory to Dockerfile --- backend/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index d2f5373..c982858 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -23,6 +23,7 @@ RUN pip install --upgrade pip \ # Create necessary directories RUN mkdir -p /code/static /code/media +RUN mkdir -p /code/staticfiles /code/media # Copy the Django project code into the Docker image COPY ./server /code/