fuegovic
		
	commited on
		
		
					Commit 
							
							·
						
						ab2f69c
	
1
								Parent(s):
							
							6c26694
								
LibreChat
Browse files- Dockerfile +6 -4
    	
        Dockerfile
    CHANGED
    
    | @@ -1,6 +1,8 @@ | |
| 1 | 
            -
             | 
|  | |
| 2 |  | 
| 3 | 
            -
            #  | 
| 4 | 
            -
            RUN  | 
| 5 |  | 
| 6 | 
            -
             | 
|  | 
|  | |
| 1 | 
            +
            # Pull the base image
         | 
| 2 | 
            +
            FROM ghcr.io/danny-avila/librechat:latest
         | 
| 3 |  | 
| 4 | 
            +
            # Install dependencies
         | 
| 5 | 
            +
            RUN cd /app/api && npm install
         | 
| 6 |  | 
| 7 | 
            +
            # Command to run on container start
         | 
| 8 | 
            +
            CMD ["npm", "run", "backend"]
         |