mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-10-31 06:05:43 +00:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) 4979121395
			
		
	
	4979121395
	
	
	
		
			
			Bumps golang from 1.24-alpine3.21 to 1.25-alpine3.21. --- updated-dependencies: - dependency-name: golang dependency-version: 1.25-alpine3.21 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			280 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			280 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM golang:1.25-alpine3.21
 | |
| 
 | |
| WORKDIR /tinyauth
 | |
| 
 | |
| COPY go.mod ./
 | |
| COPY go.sum ./
 | |
| 
 | |
| RUN go mod download
 | |
| 
 | |
| COPY ./cmd ./cmd
 | |
| COPY ./internal ./internal
 | |
| COPY ./main.go ./
 | |
| COPY ./air.toml ./
 | |
| 
 | |
| RUN go install github.com/air-verse/air@v1.61.7
 | |
| 
 | |
| EXPOSE 3000
 | |
| 
 | |
| ENTRYPOINT ["air", "-c", "air.toml"] |