荣数api转发
This commit is contained in:
parent
7f7cf3dc9f
commit
3699762be3
22
Dockerfile
22
Dockerfile
|
@ -1,10 +1,14 @@
|
||||||
FROM golang:1.21.10-alpine AS builder
|
FROM golang:1.21.10-alpine AS builder
|
||||||
|
|
||||||
LABEL stage=gobuilder
|
LABEL stage=gobuilder
|
||||||
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories/
|
|
||||||
ENV CGO_ENABLED 0
|
ENV CGO_ENABLED 0
|
||||||
ENV GOPROXY https://goproxy.cn,direct
|
ENV GOPROXY https://goproxy.cn,direct
|
||||||
WORKDIR /src
|
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 /msgc
|
||||||
|
|
||||||
COPY ../.. .
|
COPY ../.. .
|
||||||
RUN go mod download
|
RUN go mod download
|
||||||
|
@ -12,16 +16,20 @@ RUN go build -ldflags="-s -w" -o /src/cmd/api/transfer cmd/api/transfer.go
|
||||||
|
|
||||||
|
|
||||||
FROM alpine:latest AS runtime
|
FROM alpine:latest AS runtime
|
||||||
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories/
|
|
||||||
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
||||||
|
|
||||||
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||||||
|
COPY --from=builder /usr/share/zoneinfo/Asia/Shanghai /usr/share/zoneinfo/Asia/Shanghai
|
||||||
|
ENV TZ Asia/Shanghai
|
||||||
|
COPY --from=builder /src /src
|
||||||
RUN apk update --no-cache && apk add --no-cache supervisor
|
RUN apk update --no-cache && apk add --no-cache supervisor
|
||||||
RUN apk add --no-cache make
|
RUN apk add --no-cache make
|
||||||
|
|
||||||
ENV TZ Asia/Shanghai
|
|
||||||
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
||||||
COPY --from=builder /src /src
|
|
||||||
|
|
||||||
RUN mkdir "/var/log/supervisor"
|
RUN mkdir "/var/log/supervisor"
|
||||||
WORKDIR /src
|
|
||||||
ADD ./sh/startup.sh /opt/startup.sh
|
ADD ./sh/startup.sh /opt/startup.sh
|
||||||
RUN sed -i 's/\r//g' /opt/startup.sh
|
RUN sed -i 's/\r//g' /opt/startup.sh
|
||||||
ADD ./sh/supervisord.conf /etc/supervisord.conf
|
ADD ./sh/supervisord.conf /etc/supervisord.conf
|
||||||
|
|
Loading…
Reference in New Issue