-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstack.toml
103 lines (88 loc) · 2.18 KB
/
stack.toml
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
id = "io.buildpacks.stacks.noble"
homepage = "https://github.com/paketo-buildpacks/noble-base-stack"
maintainer = "Paketo Buildpacks"
platforms = ["linux/amd64", "linux/arm64"]
[build]
description = "ubuntu:noble with compilers and shell utilities"
dockerfile = "./build.Dockerfile"
gid = 1000
shell = "/bin/bash"
uid = 1001
[build.args]
architecture = "amd64"
sources = """
Types: deb
URIs: http://archive.ubuntu.com/ubuntu/
Suites: noble noble-updates
Components: main universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
Types: deb
URIs: http://security.ubuntu.com/ubuntu/
Suites: noble-security
Components: main universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
"""
packages = """\
build-essential \
ca-certificates \
curl \
git \
jq \
libexpat1 \
libgmp-dev \
libssl3t64 \
libssl-dev \
libyaml-0-2 \
netbase \
openssl \
pkg-config \
tzdata \
xz-utils \
zlib1g-dev \
"""
[build.platforms."linux/arm64".args]
architecture = "arm64"
sources = """
Types: deb
URIs: http://ports.ubuntu.com/ubuntu-ports/
Suites: noble noble-updates noble-security
Components: main universe multiverse
"""
[run]
description = "ubuntu:noble with some common dependencies like tzdata and openssl"
dockerfile = "./run.Dockerfile"
gid = 1000
shell = "/bin/bash"
uid = 1002
[run.args]
architecture = "amd64"
sources = """
Types: deb
URIs: http://archive.ubuntu.com/ubuntu/
Suites: noble noble-updates
Components: main universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
Types: deb
URIs: http://security.ubuntu.com/ubuntu/
Suites: noble-security
Components: main universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
"""
packages = """\
ca-certificates \
libexpat1 \
libssl3t64 \
libyaml-0-2 \
netbase \
openssl \
tzdata \
zlib1g \
"""
[run.platforms."linux/arm64".args]
architecture = "arm64"
sources = """
Types: deb
URIs: http://ports.ubuntu.com/ubuntu-ports/
Suites: noble noble-updates noble-security
Components: main universe multiverse
"""