-
Notifications
You must be signed in to change notification settings - Fork 0
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
8fcd51c
commit 862d4f4
Showing
1 changed file
with
7 additions
and
8 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 |
---|---|---|
@@ -1,22 +1,21 @@ | ||
# syntax=docker/dockerfile:1 | ||
|
||
FROM golang:1.22.2 as builder | ||
FROM golang:1.22-alpine as builder | ||
|
||
WORKDIR /app | ||
|
||
COPY go.mod go.sum ./ | ||
|
||
COPY . . | ||
|
||
RUN go install github.com/a-h/templ/cmd/templ@latest | ||
|
||
RUN templ generate | ||
|
||
RUN CGO_ENABLED=0 GOOS=linux go build -v -o ./sac | ||
RUN go mod download | ||
|
||
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -o bin/sac main.go | ||
|
||
FROM alpine:latest as release | ||
|
||
COPY --from=builder /app/sac /sac | ||
COPY --from=builder /app/bin/sac /sac | ||
|
||
EXPOSE 8080 | ||
|
||
ENTRYPOINT [ "/sac" ] | ||
ENTRYPOINT [ "/sac" ] |