telegram-discord-bridge/Dockerfile
2024-03-21 03:29:50 +01:00

16 lines
No EOL
207 B
Docker

FROM golang:alpine AS builder
WORKDIR /app
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o main .
# Path: Dockerfile
FROM alpine
WORKDIR /app
COPY --from=builder /app/main .
ENTRYPOINT ["/app/main"]