-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (50 loc) · 1.1 KB
/
docker-compose.yml
File metadata and controls
54 lines (50 loc) · 1.1 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
version: '3'
volumes:
wheelhouse: {}
pipcache: {}
build: {}
services:
manylinux2010:
image: quay.io/pypa/manylinux2010_x86_64:latest
user: root
environment:
PLATFORM: manylinux2010_x86_64
PYTHON_VERSIONS: |
cp37-cp37m
cp38-cp38
volumes:
- "./:/io"
#- "wheelhouse:/io/wheelhouse"
- "pipcache:/root/.cache/pip"
#- "build:/io/build"
tmpfs:
- /io/build
- /io/tests/__pycache__
- /io/wheels
- /io/wheelhouse
working_dir: /io
command: ./build_manylinux.sh
manylinux2014:
image: quay.io/pypa/manylinux2014_x86_64:latest
user: root
environment:
PLATFORM: manylinux2014_x86_64
PYTHON_VERSIONS: |
cp312-cp312
cp311-cp311
cp310-cp310
cp39-cp39
cp38-cp38
cp37-cp37m
volumes:
- "./:/io"
#- "wheelhouse:/io/wheelhouse"
- "pipcache:/root/.cache/pip"
#- "build:/io/build"
tmpfs:
- /io/build
- /io/tests/__pycache__
- /io/wheels
- /io/wheelhouse
working_dir: /io
command: ./build_manylinux.sh