| 12345678910111213141516171819202122232425262728293031323334353637 |
- #first stage - builder
- FROM golang:latest as builder
- COPY . /app
- WORKDIR /app
- ENV GO111MODULE=auto
- RUN CGO_ENABLED=0 GOOS=linux go build -o app main.go
- WORKDIR /app/netclient
- ENV GO111MODULE=auto
- RUN CGO_ENABLED=0 GOOS=linux go build -o netclient main.go
- #second stage
- FROM debian:latest
- RUN apt-get update && apt-get -y install systemd procps
- WORKDIR /root/
- COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
- COPY --from=builder /app .
- COPY --from=builder /app/config config
- COPY --from=builder /app/netclient netclient
- EXPOSE 8081
- EXPOSE 50051
- CMD ["./app"]
|