34 lines
979 B
Plaintext
34 lines
979 B
Plaintext
FROM 172.16.100.99:9006/golang:alpine AS builder
|
|
|
|
LABEL stage=gobuilder
|
|
#ENV DUBBO_GO_CONFIG_PATH ./conf/dubbogo.yaml
|
|
#ENV MODE_ENV test
|
|
ENV CGO_ENABLED 0
|
|
ENV GOPROXY https://goproxy.cn,direct
|
|
#RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
|
#RUN apk update --no-cache && apk add --no-cache tzdata
|
|
WORKDIR /build
|
|
#ADD go.mod .
|
|
#ADD go.sum .
|
|
#RUN go mod download
|
|
#COPY . .
|
|
|
|
#RUN go env -w GOOS=linux && go build -ldflags "-s -w" -o /app/meal-main-server ./cmd/app.go
|
|
|
|
COPY exhibition-main-server /app/exhibition-main-server
|
|
|
|
#FROM 172.16.100.99:9006/alpine
|
|
#RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
|
#RUN apk update --no-cache
|
|
#RUN apk add --no-cache ca-certificates
|
|
#RUN apk add --no-cache tzdata
|
|
FROM 172.16.100.99:9006/self-alpine
|
|
COPY ./conf /app/conf
|
|
|
|
ENV TZ Asia/Shanghai
|
|
ENV MODE_ENV test
|
|
WORKDIR /app
|
|
COPY --from=builder /app/exhibition-main-server .
|
|
EXPOSE 9025
|
|
CMD ["/app/exhibition-main-server"]
|