-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathexperimental.docker-bake.json
45 lines (45 loc) · 1.08 KB
/
experimental.docker-bake.json
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
{
"group": [
{
"default": [
{
"targets": [
"geospatial-dev-osgeo"
]
}
],
"osgeo": [
{
"targets": [
"geospatial-dev-osgeo"
]
}
]
}
],
"target": {
"geospatial-dev-osgeo": {
"dockerfile": "dockerfiles/geospatial-dev-osgeo.Dockerfile",
"labels": {
"org.opencontainers.image.title": "rocker/geospatial on dev-osgeo",
"org.opencontainers.image.description": "Docker-based Geospatial toolkit for R, built on versioned Rocker image.",
"org.opencontainers.image.base.name": "docker.io/rocker/verse:4.4.2",
"org.opencontainers.image.version": "R-4.4.2"
},
"platforms": [
"linux/amd64"
],
"tags": [
"docker.io/rocker/geospatial:dev-osgeo",
"ghcr.io/rocker-org/geospatial:dev-osgeo"
],
"cache-from": [
"docker.io/rocker/geospatial:dev-osgeo",
"ghcr.io/rocker-org/geospatial:dev-osgeo"
],
"cache-to": [
"type=inline"
]
}
}
}