Add the git sha to version output
Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
3b6cc7a7bb
commit
bea2072b95
13 changed files with 67 additions and 18 deletions
|
|
@ -9,18 +9,32 @@ a = Analysis(['bin/docker-compose'],
|
|||
runtime_hooks=None,
|
||||
cipher=block_cipher)
|
||||
|
||||
pyz = PYZ(a.pure,
|
||||
cipher=block_cipher)
|
||||
pyz = PYZ(a.pure, cipher=block_cipher)
|
||||
|
||||
exe = EXE(pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
[('compose/config/fields_schema.json', 'compose/config/fields_schema.json', 'DATA')],
|
||||
[('compose/config/service_schema.json', 'compose/config/service_schema.json', 'DATA')],
|
||||
[
|
||||
(
|
||||
'compose/config/fields_schema.json',
|
||||
'compose/config/fields_schema.json',
|
||||
'DATA'
|
||||
),
|
||||
(
|
||||
'compose/config/service_schema.json',
|
||||
'compose/config/service_schema.json',
|
||||
'DATA'
|
||||
),
|
||||
(
|
||||
'compose/GITSHA',
|
||||
'compose/GITSHA',
|
||||
'DATA'
|
||||
)
|
||||
],
|
||||
name='docker-compose',
|
||||
debug=False,
|
||||
strip=None,
|
||||
upx=True,
|
||||
console=True )
|
||||
console=True)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue