mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 14:03:45 +03:00
23 lines
428 B
Docker
23 lines
428 B
Docker
FROM golang:1.23.9-alpine as builder
|
|
|
|
WORKDIR /build
|
|
|
|
COPY notifier/go.mod go.mod
|
|
COPY notifier/go.sum go.sum
|
|
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
|
|
WORKDIR notifier
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -o /server ./cmd/server/main.go
|
|
|
|
FROM scratch
|
|
COPY --from=builder server /bin/server
|
|
COPY notifier/configs/values_local.yaml /bin/config/values_local.yaml
|
|
|
|
ENV CONFIG_FILE=/bin/config/values_local.yaml
|
|
|
|
ENTRYPOINT ["/bin/server"]
|