4 lines
64 B
Docker
4 lines
64 B
Docker
FROM golang:1.23 as first
|
|
|
|
COPY ./* .
|
|
RUN go build -o main -v .
|