ExtraLearn-Backend-v1 / Dockerfile
Sindhuprakash's picture
Upload Dockerfile with huggingface_hub
3d4600a verified
raw
history blame contribute delete
450 Bytes
# Use the official Python image as the base image
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy the app files to the container
COPY . /app
COPY ADAB_TunedModle.joblib /app/ADAB_TunedModle.joblib
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port Streamlit runs on
EXPOSE 7860
# Run the Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]