mirror of
https://github.com/SourceFellows/gobuch.git
synced 2024-11-24 06:23:18 +00:00
7 lines
99 B
Docker
7 lines
99 B
Docker
|
FROM golang:latest
|
||
|
|
||
|
COPY main.go /app/main.go
|
||
|
WORKDIR /app
|
||
|
RUN go build main.go
|
||
|
|
||
|
CMD [ "/app/main"]
|