11 lines
204 B
Docker
11 lines
204 B
Docker
FROM python:3.13-slim
|
|
|
|
EXPOSE 8080
|
|
WORKDIR /app
|
|
|
|
COPY . ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8080", "--server.address=0.0.0.0"]
|