mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			574 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			574 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:12.6.0-alpine
 | 
						|
 | 
						|
# Create app directory
 | 
						|
WORKDIR /usr/src/app
 | 
						|
 | 
						|
# Copy both package.json and package-lock.json
 | 
						|
# where available (npm@5+)
 | 
						|
COPY package.json package-lock.json ./
 | 
						|
 | 
						|
# Install app dependencies
 | 
						|
RUN set -x \
 | 
						|
    && apk add --no-cache --virtual .build-dependencies \
 | 
						|
        autoconf \
 | 
						|
        automake \
 | 
						|
        g++ \
 | 
						|
        gcc \
 | 
						|
        libtool \
 | 
						|
        make \
 | 
						|
        nasm \
 | 
						|
        libpng-dev \
 | 
						|
        python \
 | 
						|
    && npm install --production \
 | 
						|
    && apk del .build-dependencies
 | 
						|
 | 
						|
# Bundle app source
 | 
						|
COPY . .
 | 
						|
 | 
						|
EXPOSE 8080
 | 
						|
CMD [ "node", "./src/www" ]
 |