-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yml
43 lines (42 loc) · 1.22 KB
/
Taskfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: '3'
tasks:
goto:1:
cmds:
- cmd: cat chapters/1.Dockerfile > Dockerfile
- cmd: echo "Dockerfile set to chapter 1. Introduction"
silent: true
goto:2:
cmds:
- cmd: cat chapters/2.Dockerfile > Dockerfile
- cmd: echo "Dockerfile set to chapter 2. Layers"
silent: true
goto:3:
cmds:
- cmd: cat chapters/3.Dockerfile > Dockerfile
- cmd: echo "Dockerfile set to chapter 3. Multi-stage"
silent: true
goto:4:
cmds:
- cmd: cat chapters/4.Dockerfile > Dockerfile
- cmd: echo "Dockerfile set to chapter 4. Mounts"
silent: true
goto:5:
cmds:
- cmd: cat chapters/5.Dockerfile > Dockerfile
- cmd: echo "Dockerfile set to chapter 5. Build arguments"
silent: true
goto:6:
cmds:
- cmd: cat chapters/6.Dockerfile > Dockerfile
- cmd: echo "Dockerfile set to chapter 6. Export binaries"
silent: true
goto:7:
cmds:
- cmd: cat chapters/7.Dockerfile > Dockerfile
- cmd: echo "Dockerfile set to chapter 7. Test"
silent: true
goto:8:
cmds:
- cmd: cat chapters/8.Dockerfile > Dockerfile
- cmd: echo "Dockerfile set to chapter 8. Multi-platform"
silent: true