-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0bf4249
commit 6cc8be8
Showing
4 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,5 @@ | |
!linux.Dockerfile | ||
!windows.Dockerfile | ||
|
||
!public | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,5 @@ playground/ | |
*.tmp | ||
# Profiling results | ||
*.pprof | ||
# Additional files for hosting. Workaround for now ig. | ||
public/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# | ||
# Builder for Golang | ||
# | ||
# We explicitly use a certain major version of go, to make sure we don't build | ||
# with a newer verison than we are using for CI tests, as we don't directly | ||
# test the produced binary but from source code directly. | ||
FROM docker.io/golang:1.23.3 AS builder | ||
|
||
WORKDIR /app | ||
|
||
# This causes caching of the downloaded go modules and makes repeated local | ||
# builds much faster. We must not copy the code first though, as a change in | ||
# the code causes a redownload. | ||
COPY go.mod go.sum ./ | ||
RUN go mod download -x | ||
|
||
# Import that this comes after mod download, as it breaks caching. | ||
ARG VERSION="dev" | ||
|
||
# Copy actual codebase, since we only have the go.mod and go.sum so far. | ||
COPY . /app/ | ||
ENV CGO_ENABLED=0 | ||
RUN go build -trimpath -ldflags "-w -s -X 'github.com/scribble-rs/scribble.rs/internal/version.Version=${VERSION}'" -tags timetzdata -o ./scribblers ./cmd/scribblers | ||
|
||
# | ||
# Runner | ||
# | ||
FROM scratch | ||
|
||
# Additionally hosted files | ||
COPY public /public | ||
|
||
COPY --from=builder /app/scribblers /scribblers | ||
# The scratch image doesn't contain any certificates, therefore we use | ||
# the builders certificate, so that we can send HTTP requests. | ||
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ | ||
|
||
ENTRYPOINT ["/scribblers"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters