Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	File size: 452 Bytes
			
			| 1150923 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Pull Base Image
FROM tensorflow/tensorflow:latest-gpu-jupyter
# Set Working Directory
RUN mkdir /usr/src/enhance-me
WORKDIR /usr/src/enhance-me
# Set Environment Variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
RUN pip install --upgrade pip setuptools wheel
RUN pip install gdown matplotlib streamlit tqdm wandb
COPY . /usr/src/enhance-me/
CMD ["jupyter", "notebook", "--port=8888", "--no-browser", "--ip=0.0.0.0", "--allow-root"]
 | 
