derek-thomas's picture
derek-thomas HF staff
Adding cache dir?
bf9fccb
raw
history blame
No virus
813 Bytes
# Use the official Python base image
FROM python:3.9
# Install Git LFS
RUN apt-get update && apt-get install -y git-lfs
# Set the working directory
WORKDIR /app
# Copy requirements.txt into the container
COPY requirements.txt .
# Install the required packages
RUN pip install --no-cache-dir -r requirements.txt
# Set the git credential helper to "store"
RUN git config --global credential.helper store
# Copy the rest of the application files into the container
COPY . .
# Copy supervisord.conf into the container
COPY supervisord.conf .
# Set permissions on the log file
RUN touch /app/mylog.log /app/supervisord.log && chmod a+rwx /app/mylog.log /app/supervisord.log
RUN mkdir -p /.cache/huggingface
# Expose the desired port
EXPOSE 7860
# Run supervisord
CMD ["supervisord", "-c", "supervisord.conf"]