Last active
September 29, 2018 09:19
-
-
Save viettranx/6f2b85166d3e7772c73872176f6535a1 to your computer and use it in GitHub Desktop.
Revisions
-
viettranx created this gist
Sep 29, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ FROM golang:latest RUN mkdir /app ADD . /app/ WORKDIR /app RUN go build -o demoApp . CMD ["/app/demoApp"]