-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.yml
37 lines (36 loc) · 911 Bytes
/
build.yml
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
# This file is only used to build multiple images
version: '3'
services:
python3.8:
image: ${COMPOSE_BUILD_NAME}:3.8
build:
dockerfile: 3.8/Dockerfile
context: .
args:
- BUILD_DATE=$BUILD_DATE
- PIPENV_VERSION=2018.11.26
- POETRY_VERSION=1.0.5
- PYTHON_VERSION=3.8
- VCS_REF=$VCS_REF
python3.7:
image: ${COMPOSE_BUILD_NAME}:3.7
build:
dockerfile: 3.7/Dockerfile
context: .
args:
- BUILD_DATE=$BUILD_DATE
- PIPENV_VERSION=2018.11.26
- POETRY_VERSION=1.0.5
- PYTHON_VERSION=3.7
- VCS_REF=$VCS_REF
python3.6:
image: ${COMPOSE_BUILD_NAME}:3.6
build:
dockerfile: 3.6/Dockerfile
context: .
args:
- BUILD_DATE=$BUILD_DATE
- PIPENV_VERSION=2018.11.26
- POETRY_VERSION=1.0.5
- PYTHON_VERSION=3.6
- VCS_REF=$VCS_REF