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