mirror of
https://github.com/docker/compose.git
synced 2025-05-09 00:50:11 +02:00
10 lines
208 B
Bash
Executable File
10 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
rm -rf venv
|
|
virtualenv venv
|
|
venv/bin/pip install -r requirements.txt
|
|
venv/bin/pip install -r requirements-dev.txt
|
|
venv/bin/pip install .
|
|
venv/bin/pyinstaller -F bin/fig
|
|
dist/fig --version
|