8 lines
85 B
Docker
8 lines
85 B
Docker
FROM golang
|
|
|
|
COPY . .
|
|
|
|
RUN go build cmd/server/server.go
|
|
|
|
CMD [ "server", "start" ]
|