🎉 Initial Commit
This commit is contained in:
		
							
								
								
									
										15
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,15 @@ | ||||
| # Building Backend | ||||
| FROM golang:alpine as reader-server | ||||
|  | ||||
| WORKDIR /source | ||||
| COPY . . | ||||
| RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -buildvcs -o /dist ./pkg/main.go | ||||
|  | ||||
| # Runtime | ||||
| FROM golang:alpine | ||||
|  | ||||
| COPY --from=reader-server /dist /reader/server | ||||
|  | ||||
| EXPOSE 8445 | ||||
|  | ||||
| CMD ["/reader/server"] | ||||
		Reference in New Issue
	
	Block a user