fake-news-detector / Dockerfile
ESMATUGBA's picture
Update Dockerfile
dde1744 verified
Raw
History Blame Contribute Delete
266 Bytes
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt /app/
RUN python -m pip install --upgrade pip && pip install --no-cache-dir -r /app/requirements.txt
COPY . /app
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]