1
0
This commit is contained in:
2026-05-14 19:56:24 +02:00
commit 158000d047
16 changed files with 1064 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim
WORKDIR /app
COPY pyproject.toml uv.lock ./
RUN uv sync --frozen --no-install-project --no-dev
COPY main.py .
COPY initstuff.py .
RUN mkdir -p input
RUN mkdir -p output
RUN echo "md5" > config.txt
EXPOSE 8501
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health || exit 1
ENTRYPOINT ["uv", "run", "streamlit", "run", "main.py", "--server.port=8501", "--server.address=0.0.0.0"]