From abd122413ebd14407017721c4450b3f10733a4b7 Mon Sep 17 00:00:00 2001 From: jake Date: Sun, 9 Nov 2025 14:41:19 -0500 Subject: [PATCH] this isn't fun anymore 2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c348076..c0d5c47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM golang:alpine3.22 AS builder WORKDIR /app COPY . . RUN go mod download && \ - CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /app/parser main.go + CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o parser main.go FROM golang:alpine3.22 COPY --from=builder /app/parser /run/parser