-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
docker-compose.yaml
34 lines (34 loc) · 955 Bytes
/
docker-compose.yaml
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
version: "3.0"
services:
tgcalls_x86_64:
build:
context: .
dockerfile: build/manylinux/dev/Dockerfile
args:
MANYLINUX_PLATFORM: manylinux2014_x86_64
command: ["cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39", "manylinux2014_x86_64"]
environment:
- ROOT_PATH=/usr/src
volumes:
- ./dist:/usr/src/dist
tgcalls_aarch64:
build:
context: .
dockerfile: build/manylinux/dev/Dockerfile
args:
MANYLINUX_PLATFORM: manylinux2014_aarch64
command: ["cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39", "manylinux2014_aarch64"]
environment:
- ROOT_PATH=/usr/src
volumes:
- ./dist:/usr/src/dist
tgcalls_ubuntu:
build:
context: .
dockerfile: build/ubuntu/Dockerfile
env_file: pytgcalls/.env
# command: tail -F anything
command: python3 pytgcalls/test3.py
volumes:
- ./dist:/usr/src/dist
- ./pytgcalls:/usr/src/tgcalls/pytgcalls