refactor(docker): remove docker option

This commit is contained in:
Dustin Stiles 2025-03-24 13:34:53 -04:00
parent d6cf91916f
commit 203d8a6393
Signed by: duwstiles
GPG Key ID: BCD9912EC231FC87

View File

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