Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -32,6 +32,8 @@ COPY public ./public
|
|
| 32 |
# Build the React application
|
| 33 |
RUN npm run build
|
| 34 |
|
|
|
|
|
|
|
| 35 |
# Expose the port on which the Flask application will run
|
| 36 |
EXPOSE 7860
|
| 37 |
|
|
|
|
| 32 |
# Build the React application
|
| 33 |
RUN npm run build
|
| 34 |
|
| 35 |
+
COPY build /app/build
|
| 36 |
+
|
| 37 |
# Expose the port on which the Flask application will run
|
| 38 |
EXPOSE 7860
|
| 39 |
|