Files
crypto_news/Dockerfile

8 lines
253 B
Docker
Raw Permalink Normal View History

2026-03-20 07:49:42 +09:00
FROM python:3.12-slim
WORKDIR /app
2026-03-20 07:51:43 +09:00
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
2026-03-20 07:49:42 +09:00
COPY . .
2026-03-20 07:51:43 +09:00
EXPOSE 8502
CMD ["streamlit", "run", "dashboard/app.py", "--server.port=8502", "--server.address=0.0.0.0", "--server.headless=true"]