您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
20 行
357 B
20 行
357 B
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"]
|