mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-10-30 21:55:43 +00:00 
			
		
		
		
	 52f189563b
			
		
	
	52f189563b
	
	
	
		
			
			* refactor: split app context and user context * tests: fix api tests * chore: rename dockerfiles * fix: use correct forwardauth address
		
			
				
	
	
		
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM oven/bun:1.1.45-alpine
 | |
| 
 | |
| WORKDIR /site
 | |
| 
 | |
| COPY ./site/package.json ./
 | |
| COPY ./site/bun.lockb ./
 | |
| 
 | |
| RUN bun install
 | |
| 
 | |
| COPY ./site/public ./public
 | |
| COPY ./site/src ./src
 | |
| 
 | |
| COPY ./site/eslint.config.js ./
 | |
| COPY ./site/index.html ./
 | |
| COPY ./site/tsconfig.json ./
 | |
| COPY ./site/tsconfig.app.json ./
 | |
| COPY ./site/tsconfig.node.json ./
 | |
| COPY ./site/vite.config.ts ./
 | |
| COPY ./site/postcss.config.cjs ./
 | |
| 
 | |
| EXPOSE 5173
 | |
| 
 | |
| ENTRYPOINT ["bun", "run", "dev"] |