From 77300d6031aa8117cad3405314c237ee48833871 Mon Sep 17 00:00:00 2001 From: TheMaddax Date: Sun, 1 Dec 2024 22:25:00 -0600 Subject: [PATCH] Fix paths for images and video --- Dockerfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 85482ab..fc26879 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,9 +13,16 @@ COPY server/package*.json ./server/ RUN cd client && npm cache clean --force && rm -rf node_modules && npm install RUN cd server && npm install -# Copy ALL source code and assets +# Copy the entire client directory structure +COPY client/public/headshots ./client/public/headshots +COPY client/public/logos ./client/public/logos +COPY client/public/photos ./client/public/photos +COPY client/public/sponsors ./client/public/sponsors +COPY client/public/videos ./client/public/videos +COPY client/public/*.* ./client/public/ + +# Copy source code COPY client/src ./client/src -COPY client/public ./client/public COPY client/*.js ./client/ COPY client/*.json ./client/ COPY server ./server