dsfx/Dockerfile

16 lines
209 B
Docker
Raw Normal View History

2025-03-22 11:07:13 -04:00
FROM golang:1.24 AS builder
WORKDIR /app
COPY . .
2025-03-22 12:26:17 -04:00
RUN GOOS=linux CGO_ENABLED=0 go build -o /app/dsfx ./cmd/dsfx
2025-03-22 11:07:13 -04:00
FROM scratch
COPY --from=builder /app/dsfx /app/dsfx
EXPOSE 8000
ENTRYPOINT ["/app/dsfx"]