Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	File size: 492 Bytes
			
			| ec06af8 ca73992 a74438b ca73992 743215b 0f70e10 743215b ae97fae a74438b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 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
 | 
 
			
