mirror of
https://github.com/nitezs/sub2clash.git
synced 2024-12-23 15:14:43 -05:00
mod
This commit is contained in:
parent
4384e56cc6
commit
faaf5c366a
@ -15,7 +15,6 @@ builds:
|
||||
- -s -w -X sub2clash/config.Version={{ .Version }}
|
||||
flags:
|
||||
- -trimpath
|
||||
no_unique_dist_dir: true
|
||||
archives:
|
||||
- format: tar.gz
|
||||
format_overrides:
|
||||
|
@ -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/sub2clash
|
||||
tag: nightly
|
||||
username: nite07
|
||||
|
@ -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/sub2clash
|
||||
tag: ${CI_COMMIT_TAG}
|
||||
auto_tag: true
|
||||
username: nite07
|
||||
password:
|
||||
from_secret: docker_password
|
||||
|
17
Dockerfile
17
Dockerfile
@ -1,27 +1,12 @@
|
||||
# 使用官方 Golang 镜像作为构建环境
|
||||
FROM golang:1.21-alpine as builder
|
||||
LABEL authors="nite07"
|
||||
|
||||
# 设置工作目录
|
||||
WORKDIR /app
|
||||
|
||||
# 复制源代码到工作目录
|
||||
COPY . .
|
||||
RUN go mod download
|
||||
|
||||
# 获取参数
|
||||
ARG version
|
||||
|
||||
# 使用 -ldflags 参数进行编译
|
||||
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-s -w -X sub2clash/config.Version=${version}" -o sub2clash main.go
|
||||
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w -X sub2clash/config.Version=${version}" -o sub2clash .
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
# 设置工作目录
|
||||
WORKDIR /app
|
||||
|
||||
# 从 builder 镜像中复制出编译好的二进制文件
|
||||
COPY --from=builder /app/sub2clash /app/sub2clash
|
||||
|
||||
# 设置容器的默认启动命令
|
||||
ENTRYPOINT ["/app/sub2clash"]
|
Loading…
Reference in New Issue
Block a user