Spaces:
Sleeping
Sleeping
# Use an official Python runtime as a parent image | |
FROM python:3.12-slim | |
# Set the working directory | |
WORKDIR /app | |
# Copy the current directory contents into the container at /app | |
COPY . /app | |
# Create the cache directory and set permissions | |
RUN mkdir -p /app/cache && chmod 777 /app/cache | |
# Set the HF_HOME environment variable | |
ENV HF_HOME=/app/cache | |
# Install any needed packages specified in requirements.txt | |
RUN pip install --no-cache-dir --upgrade pip | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Make port 5000 available to the world outside this container | |
EXPOSE 5000 | |
ENV TRANSFORMERS_CACHE=/app/cache | |
# Run the application | |
CMD ["python", "run.py"] | |