From 8e85d319cad785be6d9df402eda7855ea0ee9db2 Mon Sep 17 00:00:00 2001 From: itspooya Date: Mon, 8 May 2023 03:47:11 +0330 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Added=20Docker=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 583c4001..9c54e21d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,13 +2,14 @@ ARG TARGETOS TARGETARCH FROM --platform=$BUILDPLATFORM golang:1.20 as builder ARG TARGETOS TARGETARCH +RUN echo "TARGETOS=$TARGETOS TARGETARCH=$TARGETARCH" # Set up the working directory WORKDIR /app # Copy the Go modules and download the dependencies COPY go.mod go.sum ./ RUN go mod download - +RUN echo "GOOS=$TARGETOS GOARCH=$TARGETARCH" > /app/.env # Copy the source code COPY . . @@ -17,13 +18,14 @@ RUN CGO_ENABLED=1 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -o xui-release-$TAR # Start a new stage using the base image FROM ubuntu:20.04 - ARG TARGETOS TARGETARCH +RUN echo "TARGETOS=$TARGETOS TARGETARCH=$TARGETARCH" # Set up the working directory WORKDIR /app # Copy the X-ui binary and required files from the builder stage COPY --from=builder /app/xui-release-$TARGETARCH /app/x-ui/xui-release +COPY --from=builder /app/.env /app/x-ui/.env COPY x-ui.service /app/x-ui/x-ui.service COPY x-ui.sh /app/x-ui/x-ui.sh