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"]