Files
dickbot/Dockerfile
2025-01-24 16:12:06 +03:00

10 lines
175 B
Docker

FROM golang:alpine AS builder
WORKDIR /main
COPY ./ /main
RUN go build -o app
FROM alpine:latest
WORKDIR /main
COPY --from=builder /main/app /main/
ENTRYPOINT ["/main/app"]