Skip to content
Snippets Groups Projects
Commit 2c9f5b95 authored by Ryan Melvin's avatar Ryan Melvin
Browse files

entrypoint script

parent 9e630a4e
No related branches found
No related tags found
1 merge request!3Feature/azure2
......@@ -29,4 +29,4 @@ EXPOSE 8501
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
\ No newline at end of file
ENTRYPOINT ["./startup.sh"]
\ No newline at end of file
......@@ -15,8 +15,6 @@ services:
- db_user
- db_password
- openai_api_key
volumes:
- ./resolv.conf:/etc/resolv.conf
secrets:
db_server:
file: secrets/db_server.txt
......
#!/bin/bash
cp -f ./resolv.conf /etc/resolv.conf
streamlit run app.py --server.port=8501 --server.address=0.0.0.0
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment