This commit is contained in:
19
Dockerfile
19
Dockerfile
@@ -1,17 +1,24 @@
|
||||
FROM golang:1.18 as builder
|
||||
|
||||
# 启用go module
|
||||
ENV GO111MODULE=on \
|
||||
GOPROXY=https://goproxy.cn,direct
|
||||
|
||||
WORKDIR /builder
|
||||
COPY . .
|
||||
RUN go mod download && go build -o app && upx -9 app
|
||||
RUN ls -lh && chmod +x ./app
|
||||
|
||||
COPY . .
|
||||
|
||||
# 指定OS等,并go build
|
||||
RUN GOOS=linux GOARCH=amd64 go build .
|
||||
|
||||
# 运行阶段指定scratch作为基础镜像
|
||||
FROM alpine
|
||||
|
||||
# 指定创建的基础镜像
|
||||
FROM alpine as runner
|
||||
# 替换阿里云的源
|
||||
RUN echo "http://mirrors.aliyun.com/alpine/latest-stable/main/" > /etc/apk/repositories
|
||||
RUN echo "http://mirrors.aliyun.com/alpine/latest-stable/community/" >> /etc/apk/repositories
|
||||
WORKDIR /app
|
||||
COPY --from=builder /builder/app ./app
|
||||
CMD ./app
|
||||
CMD ./app
|
||||
|
||||
ENTRYPOINT ["./app"]
|
||||
Reference in New Issue
Block a user