Build slides
This commit is contained in:
parent
e227588757
commit
ca85156a5a
4 changed files with 34 additions and 0 deletions
|
@ -24,6 +24,15 @@ deploy:
|
||||||
- docker build -f testenv.docker -t eu.gcr.io/shad-ts/grader/go .
|
- docker build -f testenv.docker -t eu.gcr.io/shad-ts/grader/go .
|
||||||
- docker push eu.gcr.io/shad-ts/grader/go:latest
|
- docker push eu.gcr.io/shad-ts/grader/go:latest
|
||||||
|
|
||||||
|
deploy-slides:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
script:
|
||||||
|
- docker build lectures -t eu.gcr.io/shad-ts/go-lectures
|
||||||
|
- docker push eu.gcr.io/shad-ts/go-lectures
|
||||||
|
|
||||||
update-task-list:
|
update-task-list:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
|
BIN
lectures/00-intro/gopher.png
Normal file
BIN
lectures/00-intro/gopher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
16
lectures/00-intro/lecture.slide
Normal file
16
lectures/00-intro/lecture.slide
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
Введение
|
||||||
|
Лекция 1
|
||||||
|
|
||||||
|
Фёдор Короткий
|
||||||
|
|
||||||
|
* Добро пожаловать
|
||||||
|
|
||||||
|
- Вы пришли на курс по Go
|
||||||
|
|
||||||
|
.image gopher.png
|
||||||
|
|
||||||
|
* Оргвопросы
|
||||||
|
|
||||||
|
- Чат курса в телеграме
|
||||||
|
- Репозиторий с материалами
|
||||||
|
- 12+ лекций
|
9
lectures/Dockerfile
Normal file
9
lectures/Dockerfile
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
FROM golang:1.13
|
||||||
|
|
||||||
|
RUN CGO_ENABLED=0 go get golang.org/x/tools/cmd/present && go install golang.org/x/tools/cmd/present
|
||||||
|
|
||||||
|
COPY . /lectures
|
||||||
|
|
||||||
|
WORKDIR /lectures
|
||||||
|
|
||||||
|
ENTRYPOINT /go/bin/present -http ':3999' -orighost p.go.manytask.org -use_playground -play=0
|
Loading…
Reference in a new issue