this isn't fun anymore

This commit is contained in:
2025-11-09 14:39:24 -05:00
parent 58e9c5b7f8
commit c20e5201d7

View File

@@ -3,7 +3,7 @@ FROM golang:alpine3.22 AS builder
WORKDIR /app WORKDIR /app
COPY . . COPY . .
RUN go mod download && \ RUN go mod download && \
go build -o /app/parser main.go CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /app/parser main.go
FROM golang:alpine3.22 FROM golang:alpine3.22
COPY --from=builder /app/parser /run/parser COPY --from=builder /app/parser /run/parser