1
0
Fork 0

check for login page in github ci

This commit is contained in:
Nick Sweeting 2020-07-28 00:53:50 -04:00
parent d6ac7998f0
commit e68f6aaa76
2 changed files with 2 additions and 2 deletions

View file

@ -112,4 +112,4 @@ jobs:
- name: Curl to Django app
run: |
sleep 10
curl -IL http://127.0.0.1:8000/
curl --silent --location 'http://127.0.0.1:8000' | grep 'https://github.com/pirate/ArchiveBox/wiki'

View file

@ -51,7 +51,7 @@ RUN groupadd --system archivebox \
ADD . "$CODE_PATH"
WORKDIR "$CODE_PATH"
ENV PATH="$VENV_PATH/bin:${PATH}"
ENV PATH="${PATH}:$VENV_PATH/bin"
RUN python -m venv --clear --symlinks "$VENV_PATH" \
&& pip install --upgrade pip setuptools \
&& pip install -e .