2024-11-04 19:44:42 +02:00
|
|
|
FROM golang:1.23.2 AS builder
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
|
|
|
|
RUN go mod download && go mod verify
|
|
|
|
|
|
|
|
# Copy project files
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Build
|
2024-11-04 19:54:06 +02:00
|
|
|
RUN make
|
2024-11-04 19:44:42 +02:00
|
|
|
|
|
|
|
FROM scratch
|
|
|
|
|
|
|
|
COPY --from=builder /app/monobank-firefly3-bot /app
|
|
|
|
|
|
|
|
ENTRYPOINT ["/app"]
|