Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
|
@@ -36,4 +36,7 @@ RUN python cache_models.py
|
|
| 36 |
EXPOSE 8080
|
| 37 |
|
| 38 |
# Run the Flask app
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
EXPOSE 8080
|
| 37 |
|
| 38 |
# Run the Flask app
|
| 39 |
+
COPY entrypoint.sh /app/entrypoint.sh
|
| 40 |
+
RUN chmod +x /app/entrypoint.sh
|
| 41 |
+
CMD ["/app/entrypoint.sh"]
|
| 42 |
+
|