Fix paths for images and video
This commit is contained in:
parent
0ae3dfdcee
commit
77300d6031
1 changed files with 9 additions and 2 deletions
11
Dockerfile
11
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 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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue