image-compressor / Dockerfile
roshan-acharya's picture
Update Dockerfile
5207881 verified
Raw
History Blame Contribute Delete
313 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY KMeans/ ./KMeans/
EXPOSE 8501
ENV STREAMLIT_SERVER_PORT=8501
ENV STREAMLIT_SERVER_ADDRESS=0.0.0.0
CMD ["streamlit", "run", "KMeans/app.py", "--server.port=8501", "--server.address=0.0.0.0"]]