Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	Update Dockerfile
Browse files- Dockerfile +1 -1
 
    	
        Dockerfile
    CHANGED
    
    | 
         @@ -30,7 +30,7 @@ COPY . /app 
     | 
|
| 30 | 
         
             
            COPY data.zip /app/data.zip
         
     | 
| 31 | 
         | 
| 32 | 
         
             
            # Unzip the data.zip file into the /app/data directory
         
     | 
| 33 | 
         
            -
            RUN unzip / 
     | 
| 34 | 
         | 
| 35 | 
         
             
            # Set the default command to run when starting the container
         
     | 
| 36 | 
         
             
            CMD ["python", "model.py"]
         
     | 
| 
         | 
|
| 30 | 
         
             
            COPY data.zip /app/data.zip
         
     | 
| 31 | 
         | 
| 32 | 
         
             
            # Unzip the data.zip file into the /app/data directory
         
     | 
| 33 | 
         
            +
            RUN unzip /data.zip -d /app/data
         
     | 
| 34 | 
         | 
| 35 | 
         
             
            # Set the default command to run when starting the container
         
     | 
| 36 | 
         
             
            CMD ["python", "model.py"]
         
     |