File tree 4 files changed +17
-0
lines changed
2015/introduction-to-containers-and-docker
4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change
1
+ FROM golang:1.4
2
+
3
+ ENV APP $GOPATH/src/foliea/docker-example
4
+
5
+ COPY . $APP
6
+
7
+ WORKDIR $APP
8
+
9
+ CMD ["go" , "run" , "main.go" ]
Original file line number Diff line number Diff line change
1
+ package main
2
+
3
+ import "fmt"
4
+
5
+ func main () {
6
+ fmt .Println ("Hello world" )
7
+ }
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Talks during Golang Paris meetups
6
6
- [ bootcamp - concurrency (2015/03/01)] ( http://talks.godoc.org/github.com/GolangParis/talks/2015/bootcamp-chap-8-conc/conc.slide#1 )
7
7
- [ gotoolchain (2015/02/20)] ( http://talks.godoc.org/github.com/0intro/talks/2015/gotoolchain/gotoolchain.slide#1 )
8
8
- [ imap (2015/02/20)] ( http://talks.godoc.org/github.com/GolangParis/talks/2015/imap/imap.slide#1 )
9
+ - [ Introduction to containers and Docker (2015/01/12)] ( /2015/introduction-to-containers-and-docker/slides.pdf )
9
10
10
11
### 23 avril 2015 : Spéciale frameworks micro vs. macro : Fight !
11
12
- [ introduction] ( https://github.com/GolangParis/talks/blob/master/2015/04-23-frameworks/1-Introduction.pdf )
You can’t perform that action at this time.
0 commit comments