Spaces:
Running
Running
FROM extralitdev/extralit-hf-space:develop | |
# Copy the auth config section | |
COPY .oauth.yaml /home/extralit/ | |
USER root | |
RUN apt-get update && \ | |
apt-get install -y \ | |
bash \ | |
git git-lfs \ | |
wget curl procps \ | |
htop vim nano && \ | |
ln -s /data/ /app && \ | |
rm -rf /var/lib/apt/lists/* | |
RUN chown extralit:extralit /app | |
USER extralit | |
# Uncoment this line to remove the persistence storage warning | |
ENV EXTRALIT_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false | |