Browse Source

update

three
DengBiao 1 year ago
parent
commit
29bdf5dce3
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Dockerfile

+ 2
- 2
Dockerfile View File

@@ -1,6 +1,6 @@
# 多重构建,减少镜像大小 # 多重构建,减少镜像大小
# 构建:使用golang:1.15版本 # 构建:使用golang:1.15版本
FROM golang:1.15 as build
FROM registry.cn-shenzhen.aliyuncs.com/fnuoos-prd/golang:1.18.4 as build


# 容器环境变量添加,会覆盖默认的变量值 # 容器环境变量添加,会覆盖默认的变量值
ENV GO111MODULE=on ENV GO111MODULE=on
@@ -16,7 +16,7 @@ ADD . .
RUN GOOS=linux CGO_ENABLED=0 GOARCH=amd64 go build -tags netgo -ldflags="-s -w" -installsuffix cgo -o zyos main.go RUN GOOS=linux CGO_ENABLED=0 GOARCH=amd64 go build -tags netgo -ldflags="-s -w" -installsuffix cgo -o zyos main.go


FROM ubuntu:xenial as prod FROM ubuntu:xenial as prod
LABEL maintainer="wuhanqin"
LABEL maintainer="dengbiao"
ENV TZ="Asia/Shanghai" ENV TZ="Asia/Shanghai"


COPY static/html static/html COPY static/html static/html


Loading…
Cancel
Save