mirror of
https://github.com/SourceFellows/gobuch.git
synced 2024-11-24 06:23:18 +00:00
9 lines
147 B
Docker
9 lines
147 B
Docker
|
from golang:latest
|
||
|
|
||
|
RUN mkdir /application
|
||
|
ADD . /application
|
||
|
WORKDIR /application
|
||
|
RUN go build -o application .
|
||
|
|
||
|
CMD ["/application/application"]
|