-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstack.toml
63 lines (56 loc) · 1.44 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
id = "io.buildpacks.stacks.jammy"
homepage = "https://github.com/paketo-buildpacks/jammy-base-stack"
maintainer = "Paketo Buildpacks"
platforms = ["linux/amd64"]
[build]
description = "ubuntu:jammy with compilers and shell utilities"
dockerfile = "./build.Dockerfile"
gid = 1000
shell = "/bin/bash"
uid = 1001
[build.args]
sources = """
deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse
deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse
deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse
"""
packages = """\
build-essential \
ca-certificates \
curl \
git \
jq \
libexpat1 \
libgmp-dev \
libssl3 \
libssl-dev \
libyaml-0-2 \
netbase \
openssl \
pkg-config \
tzdata \
xz-utils \
zlib1g-dev \
"""
[run]
description = "ubuntu:jammy with some common dependencies like tzdata and openssl"
dockerfile = "./run.Dockerfile"
gid = 1000
shell = "/bin/bash"
uid = 1002
[run.args]
sources = """
deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse
deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse
deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse
"""
packages = """\
ca-certificates \
libexpat1 \
libssl3 \
libyaml-0-2 \
netbase \
openssl \
tzdata \
zlib1g \
"""