PoliticBot / Dockerfile
Bartix84's picture
Update Dockerfile
a27fb5b verified
raw
history blame contribute delete
461 Bytes
FROM python:3.9-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
build-essential \
curl \
software-properties-common \
git \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt ./
COPY . .
RUN mkdir -p /app/.streamlit && chmod -R 777 /app/.streamlit
RUN pip3 install --no-cache-dir -r requirements.txt
EXPOSE 8501
ENV HOME=/app
ENTRYPOINT ["streamlit", "run", "main.py", "--server.port=8501", "--server.address=0.0.0.0"]