fix: rename app/app.py → streamlit_app.py to resolve package shadowing
This commit is contained in:
parent
6ec0f957b9
commit
07794ee163
3 changed files with 3 additions and 2 deletions
|
|
@ -11,5 +11,5 @@ COPY snipe/ ./snipe/
|
|||
WORKDIR /app/snipe
|
||||
RUN pip install --no-cache-dir -e .
|
||||
|
||||
EXPOSE 8506
|
||||
CMD ["streamlit", "run", "app/app.py", "--server.port=8506", "--server.address=0.0.0.0"]
|
||||
EXPOSE 8509
|
||||
CMD ["streamlit", "run", "streamlit_app.py", "--server.port=8509", "--server.address=0.0.0.0"]
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ services:
|
|||
snipe:
|
||||
volumes:
|
||||
- ../circuitforge-core:/app/circuitforge-core
|
||||
- ./streamlit_app.py:/app/snipe/streamlit_app.py
|
||||
- ./app:/app/snipe/app
|
||||
- ./data:/app/snipe/data
|
||||
environment:
|
||||
|
|
|
|||
Loading…
Reference in a new issue