2024-07-25 18:48:25 +02:00
|
|
|
FROM golang:alpine AS builder
|
|
|
|
|
|
|
|
WORKDIR /app
|
2025-02-14 12:00:29 +01:00
|
|
|
|
2024-07-25 18:48:25 +02:00
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN go build .
|
|
|
|
|
2025-02-14 12:00:29 +01:00
|
|
|
RUN ls /app
|
|
|
|
|
|
|
|
FROM scratch
|
2024-07-25 18:48:25 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-08-19 11:43:40 +02:00
|
|
|
COPY --from=builder /app/oc-monitord .
|