caviri
commited on
Commit
•
3c64299
1
Parent(s):
cd2cc83
ci: Testing changes
Browse files- Dockerfile +1 -2
- app/main.py +2 -1
Dockerfile
CHANGED
@@ -60,5 +60,4 @@ RUN pip3 install -r $HOME/digiwild/requirements.txt
|
|
60 |
|
61 |
#RUN chown -R user:user /digiwild/data /digiwild/app/assets
|
62 |
|
63 |
-
|
64 |
-
ENTRYPOINT [ "python3", "/home/user/digiwild/test.py" ]
|
|
|
60 |
|
61 |
#RUN chown -R user:user /digiwild/data /digiwild/app/assets
|
62 |
|
63 |
+
ENTRYPOINT ["python3", "/home/user/digiwild/app/main.py"]
|
|
app/main.py
CHANGED
@@ -333,4 +333,5 @@ with gr.Blocks(theme='shivi/calm_seafoam') as demo:
|
|
333 |
|
334 |
|
335 |
if __name__ == "__main__":
|
336 |
-
demo.launch(
|
|
|
|
333 |
|
334 |
|
335 |
if __name__ == "__main__":
|
336 |
+
demo.launch()
|
337 |
+
#demo.launch(server_name="0.0.0.0", server_port=3333)
|