-
Notifications
You must be signed in to change notification settings - Fork 78
/
Makefile
79 lines (70 loc) · 2.32 KB
/
Makefile
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
default: image
all: image py_3.10.5 py_3.9.10 py_3.8.3 py_3.8.1 py_3.8.0 py_3.7.4 py_3.6.8
image:
docker build \
-f Dockerfile \
--cache-from matthewfeickert/docker-python3-ubuntu:latest \
--build-arg PYTHON_VERSION_TAG=3.10.5 \
--build-arg LINK_PYTHON_TO_PYTHON3=1 \
-t matthewfeickert/docker-python3-ubuntu:latest \
-t matthewfeickert/docker-python3-ubuntu:3.10.5 \
.
py_3.10.5:
docker build \
-f Dockerfile \
--cache-from matthewfeickert/docker-python3-ubuntu:latest \
--build-arg PYTHON_VERSION_TAG=3.10.5 \
--build-arg LINK_PYTHON_TO_PYTHON3=1 \
-t matthewfeickert/docker-python3-ubuntu:latest \
-t matthewfeickert/docker-python3-ubuntu:3.10.5 \
.
py_3.9.10:
docker build . \
--pull \
-f Dockerfile \
--cache-from matthewfeickert/docker-python3-ubuntu:latest \
--build-arg PYTHON_VERSION_TAG=3.9.10 \
--build-arg LINK_PYTHON_TO_PYTHON3=1 \
-t matthewfeickert/docker-python3-ubuntu:latest \
-t matthewfeickert/docker-python3-ubuntu:3.9.10 \
--compress
py_3.8.3:
docker build . \
--pull \
-f Dockerfile \
--cache-from matthewfeickert/docker-python3-ubuntu:latest \
--build-arg PYTHON_VERSION_TAG=3.8.3 \
--build-arg LINK_PYTHON_TO_PYTHON3=1 \
-t matthewfeickert/docker-python3-ubuntu:latest \
-t matthewfeickert/docker-python3-ubuntu:3.8.3 \
--compress
py_3.8.1:
docker build -f Dockerfile \
--cache-from matthewfeickert/docker-python3-ubuntu:latest \
--build-arg PYTHON_VERSION_TAG=3.8.1 \
--build-arg LINK_PYTHON_TO_PYTHON3=1 \
-t matthewfeickert/docker-python3-ubuntu:latest \
-t matthewfeickert/docker-python3-ubuntu:3.8.1 \
--compress .
py_3.8.0:
docker build -f Dockerfile \
--cache-from matthewfeickert/docker-python3-ubuntu:latest \
--build-arg PYTHON_VERSION_TAG=3.8.0 \
--build-arg LINK_PYTHON_TO_PYTHON3=1 \
-t matthewfeickert/docker-python3-ubuntu:latest \
-t matthewfeickert/docker-python3-ubuntu:3.8.0 \
--compress .
py_3.7.4:
docker build -f Dockerfile \
--cache-from matthewfeickert/docker-python3-ubuntu:3.7.4 \
--build-arg PYTHON_VERSION_TAG=3.7.4 \
--build-arg LINK_PYTHON_TO_PYTHON3=1 \
-t matthewfeickert/docker-python3-ubuntu:3.7.4 \
--compress .
py_3.6.8:
docker build -f Dockerfile \
--cache-from matthewfeickert/docker-python3-ubuntu:3.6.8 \
--build-arg PYTHON_VERSION_TAG=3.6.8 \
--build-arg LINK_PYTHON_TO_PYTHON3=1 \
-t matthewfeickert/docker-python3-ubuntu:3.6.8 \
--compress .