superkart_v0 / Dockerfile
Fitjv's picture
Upload folder using huggingface_hub
706586d verified
raw
history blame contribute delete
323 Bytes
FROM python:3.9-slim
# Set the working directory inside the container
WORKDIR /app
# Copy all files into the container's working directory
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]