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
310 B
Docker
10 lines
310 B
Docker
4 years ago
|
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_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
|