Fix paths for images and video

This commit is contained in:
TheMaddax 2024-12-01 22:25:00 -06:00
parent 0ae3dfdcee
commit 77300d6031

View file

@ -13,9 +13,16 @@ COPY server/package*.json ./server/
RUN cd client && npm cache clean --force && rm -rf node_modules && npm install RUN cd client && npm cache clean --force && rm -rf node_modules && npm install
RUN cd server && 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/src ./client/src
COPY client/public ./client/public
COPY client/*.js ./client/ COPY client/*.js ./client/
COPY client/*.json ./client/ COPY client/*.json ./client/
COPY server ./server COPY server ./server