FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cllama/Dockerfile at master · mostlydev/cllama · GitHub
mostlydev
/
cllama
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
1
Code
Issues
3
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cllama
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
13 lines (12 loc) · 364 Bytes
Breadcrumbs
cllama
/
Dockerfile
Copy path
File metadata and controls
13 lines (12 loc) · 364 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM
golang:1.23 AS build
WORKDIR
/src
COPY
go.mod go.sum* ./
RUN
go mod download 2>/dev/null || true
COPY
. .
RUN
CGO_ENABLED=0 go build -o /cllama ./cmd/cllama
FROM
gcr.io/distroless/static-debian12
COPY
--from=build /cllama /cllama
EXPOSE
8080 8081
HEALTHCHECK
--interval=15s --timeout=5s --retries=3 \
CMD
[
"/cllama"
,
"-healthcheck"
]
ENTRYPOINT
[
"/cllama"
]
Back
|
FazBrowse Home
|
New Git URL