Compare commits

...

2 Commits

Author SHA1 Message Date
8762164388 fix 重新go mod tidy
Some checks failed
Build image / build (push) Failing after 21s
2024-05-14 22:00:23 +08:00
69d2296b16 fix 修改golang镜像 2024-05-14 21:59:10 +08:00
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@ ARG GOPROXY=https://goproxy.cn,direct
ARG GOPRIVATE=gitea.timerzz.com
ARG GONOSUMDB=gitea.timerzz.com
ARG GONOPROXY=gitea.timerzz.com
RUN go build -o run -trimpath -ldflags '-w -s' ./cmd
RUN go build -trimpath -ldflags '-w -s' -o run ./cmd
FROM alpine:latest
WORKDIR /work

2
go.mod
View File

@ -2,6 +2,8 @@ module gitea.timerzz.com/kedaya_haitao/coach-spider
go 1.22.2
toolchain go1.22.3
require (
gitea.timerzz.com/kedaya_haitao/common v0.0.0-20240514123648-99c3e85dbc18
github.com/go-resty/resty/v2 v2.13.1