We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d2c5ee commit 66ac816Copy full SHA for 66ac816
App/WebApp.Dockerfile
@@ -33,8 +33,11 @@ RUN pip install --no-cache-dir -r /usr/src/app/requirements.txt \
33
# Copy backend source code
34
COPY . /usr/src/app/
35
36
-# Copy frontend build to correct location
37
-COPY --from=frontend /home/node/app/frontend/build /usr/src/app/frontend/build/
+# Copy frontend static to correct location
+COPY --from=frontend /home/node/app/frontend/build/index.html /usr/src/app/static/
38
+COPY --from=frontend /home/node/app/frontend/build/favicon.ico /usr/src/app/static/
39
+COPY --from=frontend /home/node/app/frontend/build/static /usr/src/app/static/
40
+
41
42
# Set working directory and expose port
43
WORKDIR /usr/src/app
0 commit comments