CodeLumia / Dockerfile
HALU-HAL's picture
Merge branch 'release/0.4.1'
ff8260c
raw
history blame contribute delete
No virus
291 Bytes
FROM python:3.12-slim
WORKDIR /app
USER root
RUN apt-get update && \
apt-get install -y git && \
rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod 777 -R /app
EXPOSE 8501
CMD ["streamlit", "run", "app.py"]