feat: 谋杀之谜

This commit is contained in:
2022-01-11 13:18:59 +08:00
parent baa0eb8db2
commit 2769ca11c2
12 changed files with 240 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
FROM golang:1.17 as builder
ENV GO111MODULE on
ENV GOPROXY https://goproxy.io,direct
WORKDIR /go/cache
ADD go.mod .
ADD go.sum .
RUN go mod download -x
WORKDIR /go/src
ADD . .
RUN go mod tidy
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o api_murder ./app/brahma/api/murder
FROM reg.icechen.cn/alpine as murder
WORKDIR /go/src
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
COPY --from=builder /go/src/api_murder ./
ENV TZ=Asia/Shanghai
RUN chmod +x ./api_murder
EXPOSE 8080
CMD ["./api_murder"]