mirror of https://github.com/q191201771/lal.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
314 B
Docker
10 lines
314 B
Docker
FROM golang:1.16.4-buster as builder
|
|
WORKDIR /go/src/github.com/q191201771/lal
|
|
#ENV GOPROXY=https://goproxy.cn,direct
|
|
COPY . .
|
|
RUN make build_for_linux
|
|
|
|
FROM debian:stretch-slim
|
|
COPY --from=builder /go/src/github.com/q191201771/lal/bin /lal/bin
|
|
COPY --from=builder /go/src/github.com/q191201771/lal/conf /lal/conf
|