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 d124521 commit 1c25fcbCopy full SHA for 1c25fcb
.github/workflows/docker.yml
@@ -0,0 +1,15 @@
1
+name: Build Docker Images
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ tags:
8
+ - '**'
9
+ pull_request:
10
11
+jobs:
12
+ package:
13
+ uses: Chia-Network/actions/.github/workflows/docker-build.yaml@main
14
+ with:
15
+ push: ${{ github.event_name != 'pull_request' }}
Dockerfile
@@ -0,0 +1,9 @@
+FROM golang:1 AS builder
+COPY . /app
+WORKDIR /app
+RUN make build
+FROM gcr.io/distroless/static-debian12:latest
+COPY --from=builder /app/bin/chia-healthcheck /usr/bin/chia-healthcheck
+CMD ["/usr/bin/chia-healthcheck", "serve"]
0 commit comments