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.
lal/Dockerfile

10 lines
310 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_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