Spaces:
Sleeping
Sleeping
File size: 668 Bytes
3df39b2 e7dc147 b66017a e7dc147 b66017a e7dc147 3df39b2 e9bb085 3df39b2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# 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"]
|