mirror of https://github.com/docker/compose.git
Ensure `pwd`/dist exists always and is 777.
Fixes #192 Signed-off-by: Scott M. Likens <scott@likens.us>
This commit is contained in:
parent
d7e01a23f8
commit
c2acceba4e
|
@ -1,3 +1,5 @@
|
|||
#!/bin/sh
|
||||
mkdir -p `pwd`/dist
|
||||
chmod 777 `pwd`/dist
|
||||
docker build -t fig .
|
||||
docker run -v `pwd`/dist:/code/dist fig pyinstaller -F bin/fig
|
||||
|
|
Loading…
Reference in New Issue