Spaces:
Runtime error
Runtime error
update import detectron2
Browse files- Dockerfile +1 -1
- __pycache__/app.cpython-312.pyc +0 -0
- app.py +1 -1
Dockerfile
CHANGED
@@ -72,4 +72,4 @@ WORKDIR $HOME/app
|
|
72 |
|
73 |
# Expose application port and set default command
|
74 |
RUN ls -a
|
75 |
-
CMD ["
|
|
|
72 |
|
73 |
# Expose application port and set default command
|
74 |
RUN ls -a
|
75 |
+
CMD ["python", "app.py"]
|
__pycache__/app.cpython-312.pyc
ADDED
Binary file (4.78 kB). View file
|
|
app.py
CHANGED
@@ -106,4 +106,4 @@ def upload():
|
|
106 |
return jsonify(response)
|
107 |
|
108 |
if __name__ == '__main__':
|
109 |
-
app.run(
|
|
|
106 |
return jsonify(response)
|
107 |
|
108 |
if __name__ == '__main__':
|
109 |
+
app.run(host='0.0.0.0', port=7860)
|