mirror of
https://github.com/GMWalletApp/epusdt.git
synced 2026-07-07 02:06:16 +00:00
update payment ui and change api route path
This commit is contained in:
+12
-14
@@ -1,26 +1,24 @@
|
||||
FROM golang:alpine AS builder
|
||||
|
||||
RUN apk add --no-cache --update git build-base
|
||||
ENV CGO_ENABLED=1
|
||||
ARG VERSION=0.0.0-dev
|
||||
ARG COMMIT=none
|
||||
ARG DATE=unknown
|
||||
WORKDIR /app
|
||||
COPY ./src/go.mod ./src/go.sum ./
|
||||
RUN go mod download
|
||||
ENV CGO_ENABLED=0
|
||||
|
||||
COPY ./src .
|
||||
RUN go build -ldflags "-s -w -X github.com/assimon/luuu/config.BuildVersion=${VERSION} -X github.com/assimon/luuu/config.BuildCommit=${COMMIT} -X github.com/assimon/luuu/config.BuildDate=${DATE}" \
|
||||
-o epusdt .
|
||||
WORKDIR /app
|
||||
|
||||
RUN git clone https://github.com/GMwalletApp/epusdt.git .
|
||||
|
||||
WORKDIR /app/src
|
||||
RUN go mod download
|
||||
RUN go build -o /app/epusdt .
|
||||
|
||||
FROM alpine:latest AS runner
|
||||
ENV TZ=Asia/Shanghai
|
||||
RUN apk --no-cache add ca-certificates tzdata
|
||||
|
||||
WORKDIR /app
|
||||
COPY --from=builder /app/static /app/static
|
||||
COPY --from=builder /app/static /static
|
||||
COPY --from=builder /app/src/static /app/static
|
||||
COPY --from=builder /app/src/static /static
|
||||
COPY --from=builder /app/epusdt .
|
||||
VOLUME /app/conf
|
||||
|
||||
ENTRYPOINT ["./epusdt" ,"http","start"]
|
||||
VOLUME /app/conf
|
||||
ENTRYPOINT ["./epusdt", "http", "start"]
|
||||
|
||||
Reference in New Issue
Block a user