mirror of
https://github.com/docker/compose.git
synced 2025-05-07 08:00:20 +02:00
6 lines
136 B
Bash
Executable File
6 lines
136 B
Bash
Executable File
#!/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
|