码农笔录博客源码
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

20 rindas
357 B

pirms 2 gadiem
FROM golang:alpine
# 为我们的镜像设置必要的环境变量
ENV GO111MODULE=on \
CGO_ENABLED=0 \
GOOS=linux \
GOARCH=amd64 \
GOPROXY="https://goproxy.cn,direct"
# Copy the current directory contents into the container
COPY . /go/src/beeblog/
WORKDIR /go/src/beeblog
RUN go mod tidy
RUN go build
EXPOSE 8082
CMD ["./beeblog"]