mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-29 02:28:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			451 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			451 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM node:10.12.0
 | |
| 
 | |
| RUN apt-get update && apt-get install -y nasm
 | |
| 
 | |
| # Create app directory
 | |
| WORKDIR /usr/src/app
 | |
| 
 | |
| # Install app dependencies
 | |
| # A wildcard is used to ensure both package.json AND package-lock.json are copied
 | |
| # where available (npm@5+)
 | |
| COPY package*.json ./
 | |
| 
 | |
| RUN npm install --production
 | |
| # If you are building your code for production
 | |
| # RUN npm install --only=production
 | |
| 
 | |
| # Bundle app source
 | |
| COPY . .
 | |
| 
 | |
| EXPOSE 8080
 | |
| CMD [ "node", "src/www" ]
 | 
