mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
7 lines
129 B
Bash
Executable File
7 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
virtualenv venv
|
|
venv/bin/pip install pyinstaller==2.1
|
|
venv/bin/pip install .
|
|
venv/bin/pyinstaller -F bin/fig
|