mirror of
https://github.com/SourceFellows/gobuch.git
synced 2025-11-04 15:46:17 +01:00
initial import
This commit is contained in:
7
cloud-provider/docker-sample/Dockerfile
Normal file
7
cloud-provider/docker-sample/Dockerfile
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM golang
|
||||
|
||||
WORKDIR /go/src/app
|
||||
COPY *.go .
|
||||
RUN go install .
|
||||
|
||||
CMD ["app"]
|
||||
9
cloud-provider/docker-sample/main.go
Normal file
9
cloud-provider/docker-sample/main.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello World!")
|
||||
}
|
||||
Reference in New Issue
Block a user