Spaces:
Build error
Build error
mphycx
commited on
Commit
·
a43b69f
1
Parent(s):
724c568
fix cmd runscript
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -29,10 +29,11 @@ WORKDIR /app
|
|
29 |
COPY intfloat /app/intfloat
|
30 |
COPY app.py app.py
|
31 |
COPY api.py api.py
|
|
|
32 |
|
33 |
EXPOSE 7860
|
34 |
EXPOSE 8080
|
35 |
|
36 |
HEALTHCHECK CMD curl --fail http://localhost:7860/_stcore/health
|
37 |
|
38 |
-
CMD
|
|
|
29 |
COPY intfloat /app/intfloat
|
30 |
COPY app.py app.py
|
31 |
COPY api.py api.py
|
32 |
+
COPY start_script.sh start_script.sh
|
33 |
|
34 |
EXPOSE 7860
|
35 |
EXPOSE 8080
|
36 |
|
37 |
HEALTHCHECK CMD curl --fail http://localhost:7860/_stcore/health
|
38 |
|
39 |
+
CMD /app/start_script.sh
|