-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuildpack.toml
More file actions
39 lines (31 loc) · 861 Bytes
/
buildpack.toml
File metadata and controls
39 lines (31 loc) · 861 Bytes
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
api = "0.7"
[buildpack]
homepage = "https://github.com/paketo-buildpacks/npm-start"
id = "paketo-buildpacks/npm-start"
name = "Paketo Buildpack for NPM Start"
[[buildpack.licenses]]
type = "Apache-2.0"
uri = "https://github.com/paketo-buildpacks/npm-start/blob/main/LICENSE"
[metadata]
include-files = [
"buildpack.toml",
"linux/amd64/bin/build",
"linux/amd64/bin/detect",
"linux/amd64/bin/run",
"linux/arm64/bin/build",
"linux/arm64/bin/detect",
"linux/arm64/bin/run",
]
pre-package = "./scripts/build.sh --target linux/amd64 --target linux/arm64"
[[metadata.configurations]]
name = "BP_NPM_START_SCRIPT"
default = "start"
description = "configures the npm script to be started"
[[stacks]]
id = "*"
[[targets]]
os = "linux"
arch = "amd64"
[[targets]]
os = "linux"
arch = "arm64"