Created
May 12, 2025 14:58
-
-
Save Magnus167/74bd06250c0ccdfb5a1d9f532eb025a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.12-slim AS base | |
RUN pip install uv | |
ADD requirements.txt . | |
RUN uv pip install --system --no-cache-dir -r requirements.txt | |
ADD *.py . | |
ADD data/ /data/ | |
ENTRYPOINT ["streamlit", "run", "dash.py", "--server.baseUrlPath", "/test/path/for/api"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment