summaryrefslogtreecommitdiff
path: root/debian/control
blob: 4059a6b64f04663f826705144643e81797240512 (plain)
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
Source: golang-github-openshift-imagebuilder
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Reinhard Tartler <siretart@tauware.de>
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any,
               golang-github-containerd-containerd-dev,
               golang-github-containers-storage-dev (>= 1.11),
               golang-github-docker-distribution-dev,
               golang-github-docker-docker-dev (>= 18.09.3+dfsg1),
               golang-github-fsouza-go-dockerclient-dev,
               golang-github-opencontainers-image-spec-dev,
               golang-github-ulikunitz-xz-dev,
               golang-glog-dev,
               golang-google-genproto-dev,
               golang-google-grpc-dev,
Standards-Version: 4.6.2
Homepage: https://github.com/openshift/imagebuilder
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-openshift-imagebuilder
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-openshift-imagebuilder.git
XS-Go-Import-Path: github.com/openshift/imagebuilder
Testsuite: autopkgtest-pkg-go

Package: openshift-imagebuilder
Architecture: any
Built-Using: ${misc:Built-Using}
Depends: ${misc:Depends},
         ${shlibs:Depends}
Description: Builds container images using Dockerfile as input
 This package supports using the Dockerfile syntax to build OCI & Docker
 compatible images, without invoking a container build command such
 as buildah bud or docker build. It is intended to give clients more
 control over how they build container images, including:
  - Instead of building one layer per line, run all instructions in the
    same container
  - Set HostConfig settings like network and memory controls that are
    not available when running container builds
  - Mount external files into the build that are not persisted as part
    of the final image (i.e. "secrets")
  - If there are no RUN commands in the Dockerfile, the container is
    created and committed, but never started.  The final image should be
    99.9% compatible with regular container builds, but bugs are always
    possible.
 .
 This package provides the imagebuilder command-line utility.

Package: golang-github-openshift-imagebuilder-dev
Architecture: all
Depends: ${misc:Depends},
         golang-github-containerd-containerd-dev,
         golang-github-containers-storage-dev (>> 1.11),
         golang-github-docker-distribution-dev,
         golang-github-docker-docker-dev (>> 18.09.3+dfsg1),
         golang-github-fsouza-go-dockerclient-dev,
         golang-github-opencontainers-image-spec-dev,
         golang-github-ulikunitz-xz-dev,
         golang-glog-dev
Description: Builds container images using Dockerfile as input
 This library supports using the Dockerfile syntax to build OCI & Docker
 compatible images, without invoking a container build command such
 as buildah bud or docker build. It is intended to give clients more
 control over how they build container images, including:
  - Instead of building one layer per line, run all instructions in the
    same container
  - Set HostConfig settings like network and memory controls that are
    not available when running container builds
  - Mount external files into the build that are not persisted as part
    of the final image (i.e. "secrets")
  - If there are no RUN commands in the Dockerfile, the container is
    created and committed, but never started.  The final image should be
    99.9% compatible with regular container builds, but bugs are always
    possible.
 .
 This package provides sources that other package may require for
 building.