diff options
| author | itspooya <fallenangel201190@yahoo.com> | 2023-05-08 03:17:11 +0300 |
|---|---|---|
| committer | Ho3ein <ho3ein.sanaei@gmail.com> | 2023-05-08 09:34:47 +0300 |
| commit | b1a302de95a07660eecb09d1c7b73b1ed4c3f200 (patch) | |
| tree | b795db83c83e2e403e5f41aa762459e14d37d217 | |
| parent | 7b567458ffa4a06c94a2c0f1d999011c7f5e4eec (diff) | |
👷 Added Docker CI
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |
