mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-11-04 08:05:42 +00:00 
			
		
		
		
	* refactor: move to traefik paerser for label parsing * fix: sanitize headers before adding to map * refactor: use splitn in header parser * refactor: ignore containers that failed to get inspected in docker
		
			
				
	
	
		
			22 lines
		
	
	
		
			439 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			439 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM oven/bun:1.2.16-alpine
 | 
						|
 | 
						|
WORKDIR /frontend
 | 
						|
 | 
						|
COPY ./frontend/package.json ./
 | 
						|
COPY ./frontend/bun.lock ./
 | 
						|
 | 
						|
RUN bun install
 | 
						|
 | 
						|
COPY ./frontend/public ./public
 | 
						|
COPY ./frontend/src ./src
 | 
						|
 | 
						|
COPY ./frontend/eslint.config.js ./
 | 
						|
COPY ./frontend/index.html ./
 | 
						|
COPY ./frontend/tsconfig.json ./
 | 
						|
COPY ./frontend/tsconfig.app.json ./
 | 
						|
COPY ./frontend/tsconfig.node.json ./
 | 
						|
COPY ./frontend/vite.config.ts ./
 | 
						|
 | 
						|
EXPOSE 5173
 | 
						|
 | 
						|
ENTRYPOINT ["bun", "run", "dev"] |