forked from sclorg/s2i-python-container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.yml
189 lines (130 loc) · 4.96 KB
/
manifest.yml
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# Files containing distgen directives
DISTGEN_RULES:
- src: src/README.md
dest: README.md
- src: src/root/opt/app-root/etc/scl_enable
dest: root/opt/app-root/etc/scl_enable
- src: src/s2i/bin/assemble
dest: s2i/bin/assemble
mode: "0755"
- src: src/s2i/bin/usage
dest: s2i/bin/usage
mode: "0755"
- src: src/s2i/bin/run
dest: s2i/bin/run
mode: "0755"
- src: test/run
dest: test/run
mode: "0755"
- src: src/test/pipenv-test-app/Pipfile
dest: test/pipenv-test-app/Pipfile
- src: src/test/pipenv-test-app/Pipfile.lock
dest: test/pipenv-test-app/Pipfile.lock
- src: src/test/pipenv-test-app/Pipfile
dest: test/micropipenv-test-app/Pipfile
- src: src/test/pipenv-test-app/Pipfile.lock
dest: test/micropipenv-test-app/Pipfile.lock
- src: src/test/from-dockerfile/Dockerfile_no_s2i.tpl
dest: test/from-dockerfile/Dockerfile_no_s2i.tpl
# Files containing distgen directives, which are used for each
# (distro, version) combination not excluded in multispec
DISTGEN_MULTI_RULES:
- src: src/Dockerfile.template
dest: Dockerfile.centos7
- src: src/Dockerfile.template
dest: Dockerfile.rhel7
- src: src/Dockerfile.template
dest: Dockerfile.rhel8
- src: src/Dockerfile.template
dest: Dockerfile.rhel9
- src: src/Dockerfile.template
dest: Dockerfile.fedora
- src: src/Dockerfile.template
dest: Dockerfile.c9s
# Files to copy
COPY_RULES:
- src: src/root/opt/app-root/etc/generate_container_user
dest: root/opt/app-root/etc/generate_container_user
- src: src/s2i/bin/init-wrapper
dest: s2i/bin/init-wrapper
mode: "0755"
- src: examples/pipenv-test-app/testapp.py
dest: test/pipenv-test-app/testapp.py
- src: examples/pipenv-test-app/setup.py
dest: test/pipenv-test-app/setup.py
- src: examples/pipenv-test-app/.s2i/environment
dest: test/pipenv-test-app/.s2i/environment
- src: examples/pipenv-test-app/.gitignore
dest: test/pipenv-test-app/.gitignore
- src: examples/micropipenv-test-app/testapp.py
dest: test/micropipenv-test-app/testapp.py
- src: examples/micropipenv-test-app/setup.py
dest: test/micropipenv-test-app/setup.py
- src: examples/micropipenv-test-app/.s2i/environment
dest: test/micropipenv-test-app/.s2i/environment
- src: examples/micropipenv-test-app/.gitignore
dest: test/micropipenv-test-app/.gitignore
# Symbolic links
# This section is the last one on purpose because the generator.py
# does not allow dead symlinks.
SYMLINK_RULES:
- src: ./Dockerfile.centos7
dest: Dockerfile
- src: ../../examples/app-home-test-app
dest: test/app-home-test-app
- src: ../../examples/app-module-test-app
dest: test/app-module-test-app
- src: ../../examples/django-test-app
dest: test/django-test-app
- src: ../../examples/django-different-port-test-app
dest: test/django-different-port-test-app
- src: ../../examples/gunicorn-different-port-test-app
dest: test/gunicorn-different-port-test-app
- src: ../../examples/gunicorn-config-different-port-test-app
dest: test/gunicorn-config-different-port-test-app
- src: ../../examples/locale-test-app
dest: test/locale-test-app
- src: ../../examples/micropipenv-requirements-test-app
dest: test/micropipenv-requirements-test-app
- src: ../../examples/mod-wsgi-test-app
dest: test/mod-wsgi-test-app
- src: ../../examples/npm-virtualenv-uwsgi-test-app
dest: test/npm-virtualenv-uwsgi-test-app
- src: ../../examples/numpy-test-app
dest: test/numpy-test-app
- src: ../../examples/pin-pipenv-version-test-app
dest: test/pin-pipenv-version-test-app
- src: ../../examples/pyuwsgi-pipenv-test-app
dest: test/pyuwsgi-pipenv-test-app
- src: ../../examples/setup-requirements-test-app
dest: test/setup-requirements-test-app
- src: ../../examples/setup-test-app
dest: test/setup-test-app
- src: ../../examples/setup-cfg-test-app
dest: test/setup-cfg-test-app
- src: ../../examples/standalone-test-app
dest: test/standalone-test-app
- src: ../../src/test/pipenv-and-micropipenv-should-fail-test-app
dest: test/pipenv-and-micropipenv-should-fail-test-app
- src: ../../../src/test/from-dockerfile/Dockerfile.tpl
dest: test/from-dockerfile/Dockerfile.tpl
- src: ../../test/run-openshift
dest: test/run-openshift
- src: ../../test/run-openshift-remote-cluster
dest: test/run-openshift-remote-cluster
- src: ../../common/test-lib.sh
dest: test/test-lib.sh
- src: ../../common/test-lib-openshift.sh
dest: test/test-lib-openshift.sh
- src: ../../common/test-lib-remote-openshift.sh
dest: test/test-lib-remote-openshift.sh
- src: ../../common/test-openshift.yaml
dest: test/test-openshift.yaml
- src: ../../test/test-lib-python.sh
dest: test/test-lib-python.sh
- src: ../../imagestreams
dest: test/imagestreams
- src: ../../common/check_imagestreams.py
dest: test/check_imagestreams.py
- src: ../../../src/root/opt/wheels/
dest: root/opt/wheels