diff --git a/watchdog-go/Dockerfile b/watchdog-go/Dockerfile index ebfff5e..9959ba4 100644 --- a/watchdog-go/Dockerfile +++ b/watchdog-go/Dockerfile @@ -1,7 +1,7 @@ FROM golang:1.22.1-alpine3.19 as build WORKDIR /app COPY go.mod go.sum main.go ./ -COPY git.usbharu.dev/ ./git.usbharu.dev +COPY watchdog/ ./watchdog RUN go mod download && go build -o watchdog-go -ldflags="-s -w" -trimpath FROM alpine:3.19