1
0
mirror of https://github.com/nitezs/sub2sing-box.git synced 2024-12-23 15:14:43 -05:00
This commit is contained in:
Nite07 2024-04-18 00:15:36 +08:00
parent 4b02c39317
commit a2596b1880
4 changed files with 5 additions and 14 deletions

View File

@ -15,7 +15,6 @@ builds:
- -s -w -X sub2sing-box/constant.Version={{ .Version }}
flags:
- -trimpath
no_unique_dist_dir: true
archives:
- format: tar.gz
format_overrides:

View File

@ -6,7 +6,7 @@ steps:
- name: build
image: woodpeckerci/plugin-docker-buildx
settings:
platforms: linux/amd64
platforms: linux/amd64,linux/arm64,linux/arm/v7
repo: nite07/sub2sing-box
tag: nightly
username: nite07

View File

@ -5,9 +5,9 @@ steps:
- name: build
image: woodpeckerci/plugin-docker-buildx
settings:
platforms: linux/amd64
platforms: linux/amd64,linux/arm64,linux/arm/v7
repo: nite07/sub2sing-box
tag: ${CI_COMMIT_TAG}
auto_tag: true
username: nite07
password:
from_secret: docker_password

View File

@ -2,25 +2,17 @@ FROM golang:1.21 as builder
LABEL authors="nite07"
WORKDIR /app
COPY . .
RUN go mod download
ARG version
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-s -w -X sub2sing-box/constant.Version=${version}" -o sub2sing-box main.go
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w -X sub2sing-box/constant.Version=${version}" -o sub2sing-box .
WORKDIR /app
FROM alpine:latest
COPY --from=builder /app/sub2sing-box /app/sub2sing-box
COPY --from=builder /app/templates /app/templates-origin
COPY --from=builder /app/entrypoint.sh /app/entrypoint.sh
RUN chmod +x /app/entrypoint.sh
VOLUME [ "/app/templates" ]
EXPOSE 8080
ENTRYPOINT ["/app/entrypoint.sh"]