From 203d8a6393261b967faea0b800994260f22ca47e Mon Sep 17 00:00:00 2001 From: Dustin Stiles Date: Mon, 24 Mar 2025 13:34:53 -0400 Subject: [PATCH] refactor(docker): remove docker option --- Dockerfile | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 5e2ac73..0000000 --- a/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM golang:1.24 AS builder - -WORKDIR /app - -COPY . . - -RUN GOOS=linux CGO_ENABLED=0 go build -o /app/dsfx ./cmd/dsfx - -FROM scratch - -COPY --from=builder /app/dsfx /app/dsfx - -EXPOSE 8000 - -ENTRYPOINT ["/app/dsfx"]