pauli 8a110661bb
Some checks failed
Build and Deploy / build-and-push (push) Failing after 31s
Build and Deploy / optional-deploy (push) Has been skipped
add gitea
2026-05-21 00:10:05 +02:00

18 lines
310 B
Docker

FROM python:3.11-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PORT=8501
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY . /app
EXPOSE ${PORT}
CMD streamlit run app.py --server.port $PORT --server.address 0.0.0.0