17 lines
283 B
Plaintext
17 lines
283 B
Plaintext
# Dockerfile
|
|
|
|
FROM python:3.10-slim
|
|
|
|
WORKDIR /workspace
|
|
|
|
COPY requirements.txt .
|
|
COPY workspace/ .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY workspace/app.py .
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8501
|
|
|
|
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"] |