mirror of
https://github.com/docker/compose.git
synced 2025-05-06 07:30:12 +02:00
... and test build on CI so we don't break it again! Fixes #503 Signed-off-by: Ben Firshman <ben@firshman.co.uk>
8 lines
219 B
Bash
Executable File
8 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
mkdir -p `pwd`/dist
|
|
chmod 777 `pwd`/dist
|
|
docker build -t fig .
|
|
docker run -u user -v `pwd`/dist:/code/dist fig pyinstaller -F bin/fig
|
|
docker run -u user -v `pwd`/dist:/code/dist fig dist/fig --version
|