Files
ferurl/Dockerfile
2025-08-06 21:12:23 +02:00

9 lines
136 B
Docker

FROM golang:latest as build
WORKDIR /app
COPY . .
RUN go build -o main .
FROM scratch
COPY --from=build /app/main /usr/local/bin/main