diff --git a/Dockerfile b/Dockerfile index ccb1cb2..7fa2cf3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/compose.override.yml b/compose.override.yml index e588dbb..fc3e5e2 100644 --- a/compose.override.yml +++ b/compose.override.yml @@ -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: diff --git a/app/app.py b/streamlit_app.py similarity index 100% rename from app/app.py rename to streamlit_app.py