You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,27 @@ For more information about the Drycc Workflow, please visit the main project pag
7
7
8
8
We welcome your input! If you have feedback, please [submit an issue][issues]. If you'd like to participate in development, please read the "Development" section below and [submit a pull request][prs].
9
9
10
-
# About
10
+
# Build config
11
11
12
12
The V3 version of imagebuilder unifies the building model, uses the latest CNCF [buildpack](https://github.com/buildpacks) building program, and also supports the dockerfile format.
13
13
14
14
You can use `DRYCC_STACK` specifies the construction mode. Currently, you can choose two construction formats: `container` and `buildpack`.
15
15
16
-
If you want to disable caching during building, you only need to generate a `.clear-cache` file in the root directory of the project.
16
+
## Build arg config
17
17
18
-
# Development
18
+
In Container Build, build arguments (ARG) a means to pass information into the build process. You can use them to parameterize the build, allowing for more flexible and configurable builds.
19
+
20
+
It can be configured through `.build-arg`, argument=value to supply to the builder, this configuration file is universal in both container and buildpack scenarios.
21
+
22
+
## Container config
23
+
24
+
Normally, in container mode, as long as there is a Dockerfile in the root directory, it is sufficient, but we can use [drycc config path](https://www.drycc.cc/docs/applications/using-dryccpath/) to configure the build process more finely.
25
+
26
+
## Buildpack config
27
+
28
+
Add an empty `.clean_cache` file, clear image's associated cache before building.
29
+
30
+
## Development
19
31
20
32
The Drycc project welcomes contributions from all developers. The high level process for development matches many other open source projects. See below for an outline.
0 commit comments