pkulkar's picture
Upload folder using huggingface_hub
df995f9 verified
raw
history blame contribute delete
442 Bytes
# Use the official Python image
FROM python:3.9
# Set the working directory inside the container
WORKDIR /app
# Copy the requirements file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the app files
COPY . .
# Expose Streamlit's default port
EXPOSE 8501
# Run the Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]