-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
33 lines (33 loc) · 1.02 KB
/
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
# [IMPLEMENTME] Update image names
services:
#############################################################################
# Local build of the project's image
#############################################################################
image:
build:
context: .
dockerfile: docker/Dockerfile
tags:
- mentalsmash/ref-project-debdocker:dev
args:
BASE_IMAGE: ubuntu:22.04
test-runner:
build:
context: .
dockerfile: docker/Dockerfile
tags:
- mentalsmash/ref-project-debdocker-test-runner:latest
args:
DEV: y
BASE_IMAGE: ubuntu:22.04
#############################################################################
# Debian package builders
#############################################################################
debian-builder:
build:
context: .
dockerfile: docker/debian-builder/Dockerfile
tags:
- mentalsmash/ref-project-debdocker-debian-builder:latest
args:
BASE_IMAGE: ubuntu:22.04