10 Commits

Author SHA1 Message Date
Fizban
fbbcff164c more ecs 2020-06-03 00:33:43 +10:00
Fizban
f59ea26c6d echos 2020-06-03 00:27:07 +10:00
Fizban
e345907744 add echos 2020-06-03 00:26:52 +10:00
Fizban
4fdf899fb4 Rem ls 2020-06-03 00:23:04 +10:00
Fizban
bc0cbb72c2 Rem slash 2020-06-03 00:22:44 +10:00
Fizban
99c9398146 addls 2020-06-03 00:19:43 +10:00
Fizban
5a6a0b3105 Add ls 2020-06-03 00:19:25 +10:00
Fizban
74860fa3f9 try mounted? 2020-06-03 00:15:22 +10:00
Fizban
f07c773adf Try set pwd 2020-06-03 00:07:18 +10:00
Fizban
decd8304a3 Try from image 2020-06-03 00:02:20 +10:00
3 changed files with 51 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
FROM ubuntu:16.04
FROM cdrx/pyinstaller-windows
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

View File

@@ -8,7 +8,7 @@ inputs:
path:
description: 'Directory containing source code & .spec file (optional requirements.txt).'
required: True
default: src/
default: src
outputs:
output:
description: 'The output of PyInstaller'

View File

@@ -1 +1,49 @@
docker run -v "$(pwd)/$1:/src/" cdrx/pyinstaller-windows
#!/bin/bash
# Fail on errors.
set -e
# Make sure .bashrc is sourced
. /root/.bashrc
# Allow the workdir to be set using an env var.
# Useful for CI pipiles which use docker for their build steps
# and don't allow that much flexibility to mount volumes
SRCDIR=$1
WORKDIR=${SRCDIR:-/src}
#
# In case the user specified a custom URL for PYPI, then use
# that one, instead of the default one.
#
if [[ "$PYPI_URL" != "https://pypi.python.org/" ]] || \
[[ "$PYPI_INDEX_URL" != "https://pypi.python.org/simple" ]]; then
# the funky looking regexp just extracts the hostname, excluding port
# to be used as a trusted-host.
mkdir -p /wine/drive_c/users/root/pip
echo "[global]" > /wine/drive_c/users/root/pip/pip.ini
echo "index = $PYPI_URL" >> /wine/drive_c/users/root/pip/pip.ini
echo "index-url = $PYPI_INDEX_URL" >> /wine/drive_c/users/root/pip/pip.ini
echo "trusted-host = $(echo $PYPI_URL | perl -pe 's|^.*?://(.*?)(:.*?)?/.*$|$1|')" >> /wine/drive_c/users/root/pip/pip.ini
echo "Using custom pip.ini: "
cat /wine/drive_c/users/root/pip/pip.ini
fi
echo "before cd"
ls
cd $WORKDIR
echo "after cd"
ls
if [ -f requirements.txt ]; then
pip install -r requirements.txt
fi # [ -f requirements.txt ]
# echo "$@"
if [[ "$@" == "" ]]; then
pyinstaller --clean -y --dist ./dist/windows --workpath /tmp *.spec
chown -R --reference=. ./dist/windows
else
sh -c "$@"
fi # [[ "$@" == "" ]]