浏览代码

Dockerfile

master
nelson 3 年前
父节点
当前提交
f1a4f3be93
  1. 20
      Dockerfile

20
Dockerfile

@ -0,0 +1,20 @@
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"]
正在加载...
取消
保存