1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

test travis

This commit is contained in:
checktheroads
2020-02-21 22:52:42 -07:00
parent ceb5e46fc9
commit 6f205f0143
5 changed files with 51 additions and 55 deletions

View File

@@ -22,4 +22,3 @@ FROM base as install
WORKDIR /tmp/hyperglass
RUN poetry install --no-ansi
COPY ./dockersetup.sh /dockersetup.sh
ENTRYPOINT ["/dockersetup.sh"]

13
.tests/dockersetup.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh -l
cd /tmp/hyperglass
echo "Starting setup..."
poetry run hyperglass setup -d
echo "Setup completed"
sleep 2
echo "Starting UI build"
poetry run hyperglass build-ui
echo "UI build completed"
# echo "Starting redis..."
# redis-server &
# echo "Redis started"
echo ""