-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcore-latest-daily.docker-bake.json
81 lines (81 loc) · 2.12 KB
/
core-latest-daily.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"group": [
{
"default": [
{
"targets": [
"rstudio",
"tidyverse",
"verse"
]
}
]
}
],
"target": {
"rstudio": {
"context": "./",
"dockerfile": "dockerfiles/rstudio_latest-daily.Dockerfile",
"labels": {
"org.opencontainers.image.title": "rocker/rstudio",
"org.opencontainers.image.description": "RStudio Server with fixed version of R",
"org.opencontainers.image.base.name": "docker.io/rocker/r-ver:latest"
},
"tags": [
"docker.io/rocker/rstudio:latest-daily"
],
"platforms": [
"linux/amd64",
"linux/arm64"
],
"cache-from": [
"docker.io/rocker/rstudio:latest-daily"
],
"cache-to": [
"type=inline"
]
},
"tidyverse": {
"context": "./",
"dockerfile": "dockerfiles/tidyverse_latest-daily.Dockerfile",
"labels": {
"org.opencontainers.image.title": "rocker/tidyverse",
"org.opencontainers.image.description": "Version-stable build of R, RStudio Server, and R packages.",
"org.opencontainers.image.base.name": "docker.io/rocker/rstudio:latest-daily"
},
"tags": [
"docker.io/rocker/tidyverse:latest-daily"
],
"platforms": [
"linux/amd64"
],
"cache-from": [
"docker.io/rocker/tidyverse:latest-daily"
],
"cache-to": [
"type=inline"
]
},
"verse": {
"context": "./",
"dockerfile": "dockerfiles/verse_latest-daily.Dockerfile",
"labels": {
"org.opencontainers.image.title": "rocker/verse",
"org.opencontainers.image.description": "Adds tex & related publishing packages to version-locked tidyverse image.",
"org.opencontainers.image.base.name": "docker.io/rocker/tidyverse:latest-daily"
},
"tags": [
"docker.io/rocker/verse:latest-daily"
],
"platforms": [
"linux/amd64"
],
"cache-from": [
"docker.io/rocker/verse:latest-daily"
],
"cache-to": [
"type=inline"
]
}
}
}