mirror of https://github.com/mainnika/a-quest.git
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					27 lines
				
				441 B
			
		
		
			
		
	
	
					27 lines
				
				441 B
			| 
								 
											6 years ago
										 
									 | 
							
								FROM alpine as builder
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								ENV GOPATH /root/go
							 | 
						||
| 
								 | 
							
								ENV PATH ${GOPATH}/bin:${PATH}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								RUN mkdir -p /app
							 | 
						||
| 
								 | 
							
								WORKDIR /app
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								RUN apk add --no-cache go git curl gcc g++ make
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								COPY . .
							 | 
						||
| 
								 | 
							
								RUN go build -o task1 github.com/mainnika/a-quest/task1-backend
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								FROM alpine
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								ENV GOPATH /root/go
							 | 
						||
| 
								 | 
							
								ENV PATH ${GOPATH}/bin:${PATH}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								RUN mkdir -p /app
							 | 
						||
| 
								 | 
							
								WORKDIR /app
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								COPY --from=builder /app/task1 .
							 | 
						||
| 
								 | 
							
								COPY --from=builder /app/task1-backend/config .
							 | 
						||
| 
								 
											6 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								EXPOSE 8081
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								CMD ["/app/task1"]
							 |