We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e94a17 commit 7353541Copy full SHA for 7353541
.github/workflows/release.yml
@@ -43,7 +43,7 @@ jobs:
43
with:
44
distribution: goreleaser
45
version: latest
46
- args: release --rm-dist --debug
+ args: release --debug
47
env:
48
BUILD_TAG: "latest"
49
GOPATH: ${{ env.GOPATH }}
Dockerfile
@@ -1,11 +1,8 @@
1
-FROM golang:1.17-alpine AS builder
2
-
3
-RUN apk update && apk add --no-cache git ca-certificates && update-ca-certificates
4
5
-FROM scratch
6
7
-COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
+FROM debian
8
9
COPY chproxy /
10
+EXPOSE 9090
+
11
ENTRYPOINT ["/chproxy"]
+CMD [ "--help" ]
0 commit comments