-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-build.sh
More file actions
executable file
·34 lines (33 loc) · 1.01 KB
/
docker-build.sh
File metadata and controls
executable file
·34 lines (33 loc) · 1.01 KB
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
#!/bin/bash
docker build --no-cache \
--build-arg from=python:3.8-slim \
-t siderpy_tests_3.8 \
-f tests/Dockerfile .
docker build --no-cache \
--build-arg from=python:3.9-slim \
-t siderpy_tests_3.9 \
-f tests/Dockerfile .
docker build --no-cache \
--build-arg from=python:3.10-slim \
-t siderpy_tests_3.10 \
-f tests/Dockerfile .
docker build --no-cache \
--build-arg from=python:3.11-slim \
-t siderpy_tests_3.11 \
-f tests/Dockerfile .
docker build --no-cache \
--build-arg from=siderpy_tests_3.8 \
-t siderpy_tests_hiredis_3.8 \
-f tests/Dockerfile.hiredis .
docker build --no-cache \
--build-arg from=siderpy_tests_3.9 \
-t siderpy_tests_hiredis_3.9 \
-f tests/Dockerfile.hiredis .
docker build --no-cache \
--build-arg from=siderpy_tests_3.10 \
-t siderpy_tests_hiredis_3.10 \
-f tests/Dockerfile.hiredis .
docker build --no-cache \
--build-arg from=siderpy_tests_3.11 \
-t siderpy_tests_hiredis_3.11 \
-f tests/Dockerfile.hiredis .