forked from lasp/space_packet_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (43 loc) · 981 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (43 loc) · 981 Bytes
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
version: '3.8'
services:
lint:
image: space-packets-linting:latest
build:
target: lint
3.8-tests:
image: space-packets-3.8-test:latest
build:
target: test
args:
- BASE_IMAGE_PYTHON_VERSION=3.8
3.9-tests:
image: space-packets-3.9-test:latest
build:
target: test
args:
- BASE_IMAGE_PYTHON_VERSION=3.9
3.10-tests:
image: space-packets-3.10-test:latest
build:
target: test
args:
- BASE_IMAGE_PYTHON_VERSION=3.10
3.11-tests:
image: space-packets-3.11-test:latest
build:
target: test
args:
- BASE_IMAGE_PYTHON_VERSION=3.11
3.12-tests:
image: space-packets-3.12-test:latest
build:
target: test
args:
- BASE_IMAGE_PYTHON_VERSION=3.12
3.11-tests-min-deps:
image: space-packets-3.11-test:latest
build:
target: test
args:
- BASE_IMAGE_PYTHON_VERSION=3.11
- BITSTRING_VERSION=4.0.1