Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
|
@@ -17,5 +17,9 @@ ENV DATABASE_PATH="/app/data/tmc_customer_service.db"
|
|
| 17 |
|
| 18 |
RUN mkdir -p /app/data
|
| 19 |
|
|
|
|
|
|
|
|
|
|
| 20 |
EXPOSE 7860
|
| 21 |
-
|
|
|
|
|
|
| 17 |
|
| 18 |
RUN mkdir -p /app/data
|
| 19 |
|
| 20 |
+
COPY entrypoint.sh /entrypoint.sh
|
| 21 |
+
RUN chmod +x /entrypoint.sh
|
| 22 |
+
|
| 23 |
EXPOSE 7860
|
| 24 |
+
|
| 25 |
+
ENTRYPOINT ["/entrypoint.sh"]
|