Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -33,7 +33,8 @@ COPY public ./public
|
|
| 33 |
# Build the React application
|
| 34 |
RUN npm run build
|
| 35 |
|
| 36 |
-
|
|
|
|
| 37 |
|
| 38 |
# Expose the port on which the Flask application will run
|
| 39 |
EXPOSE 7860
|
|
|
|
| 33 |
# Build the React application
|
| 34 |
RUN npm run build
|
| 35 |
|
| 36 |
+
# Copy the build directory to the Docker image
|
| 37 |
+
COPY build ./build
|
| 38 |
|
| 39 |
# Expose the port on which the Flask application will run
|
| 40 |
EXPOSE 7860
|