mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-29 02:28:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # !!! Don't try to build this Dockerfile directly, run it through bin/build-docker.sh script !!!
 | |
| FROM node:20.15.1-bullseye-slim
 | |
| 
 | |
| # Configure system dependencies
 | |
| RUN apt-get update && apt-get install -y --no-install-recommends \
 | |
|     autoconf \
 | |
|     automake \
 | |
|     g++ \
 | |
|     gcc \
 | |
|     libtool \
 | |
|     make \
 | |
|     nasm \
 | |
|     libpng-dev \
 | |
|     python3 \
 | |
|     gosu \
 | |
|     && rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| # Create app directory
 | |
| WORKDIR /usr/src/app
 | |
| 
 | |
| # Bundle app source
 | |
| COPY . .
 | |
| COPY server-package.json package.json
 | |
| 
 | |
| # Copy TypeScript build artifacts into the original directory structure.
 | |
| # Copy the healthcheck
 | |
| RUN cp -R build/src/* src/. && \
 | |
|     cp build/docker_healthcheck.js . && \
 | |
|     rm -r build && \
 | |
|     rm docker_healthcheck.ts
 | |
| 
 | |
| # Install app dependencies
 | |
| RUN apt-get purge -y --auto-remove \
 | |
|     autoconf \
 | |
|     automake \
 | |
|     g++ \
 | |
|     gcc \
 | |
|     libtool \
 | |
|     make \
 | |
|     nasm \
 | |
|     libpng-dev \
 | |
|     python3 \
 | |
|     && rm -rf /var/lib/apt/lists/*
 | |
| RUN npm install && \
 | |
|     npm run webpack && \
 | |
|     npm prune --omit=dev
 | |
| RUN cp src/public/app/share.js src/public/app-dist/. && \
 | |
|     cp -r src/public/app/doc_notes src/public/app-dist/. && \
 | |
|     rm -rf src/public/app && rm src/services/asset_path.ts
 | |
| 
 | |
| # Some setup tools need to be kept
 | |
| RUN apt-get update && apt-get install -y --no-install-recommends \
 | |
|     gosu \
 | |
|     && rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| # Start the application
 | |
| EXPOSE 8080
 | |
| CMD [ "./start-docker.sh" ]
 | |
| 
 | |
| HEALTHCHECK --start-period=10s CMD exec gosu node node docker_healthcheck.js | 
