This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstack.toml
65 lines (57 loc) · 1.47 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
id = "io.buildpacks.stacks.bionic"
homepage = "https://github.com/paketo-buildpacks/bionic-base-stack"
maintainer = "Paketo Buildpacks"
platforms = ["linux/amd64"]
[build]
description = "ubuntu:bionic with compilers and shell utilities"
dockerfile = "./build.Dockerfile"
gid = 1000
shell = "/bin/bash"
uid = 1000
[build.args]
sources = """
deb http://archive.ubuntu.com/ubuntu bionic main universe multiverse
deb http://archive.ubuntu.com/ubuntu bionic-updates main universe multiverse
deb http://archive.ubuntu.com/ubuntu bionic-security main universe multiverse
"""
packages = """\
build-essential \
ca-certificates \
curl \
git \
jq \
libexpat1 \
libgmp-dev \
libssl1.1 \
libyaml-0-2 \
netbase \
openssl \
tzdata \
xz-utils \
zlib1g-dev \
"""
[run]
description = "ubuntu:bionic with some common dependencies like tzdata and openssl"
dockerfile = "./run.Dockerfile"
gid = 1000
shell = "/bin/bash"
uid = 1000
[run.args]
sources = """
deb http://archive.ubuntu.com/ubuntu bionic main universe multiverse
deb http://archive.ubuntu.com/ubuntu bionic-updates main universe multiverse
deb http://archive.ubuntu.com/ubuntu bionic-security main universe multiverse
"""
packages = """\
ca-certificates \
libexpat1 \
libssl1.1 \
libyaml-0-2 \
netbase \
openssl \
tzdata \
zlib1g \
"""
[deprecated]
legacy-sbom = true
mixins = true