Merge branch 'master' of github.com:dgtlmoon/changedetection.io

pull/175/head
Leigh 3 years ago
commit 1084603375

@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libxslt-dev \ libxslt-dev \
zlib1g-dev \ zlib1g-dev \
g++ g++
RUN mkdir /install RUN mkdir /install
WORKDIR /install WORKDIR /install

@ -14,7 +14,7 @@ from backend import store
def main(argv): def main(argv):
ssl_mode = False ssl_mode = False
port = 5000 port = os.environ.get('PORT') or 5000
do_cleanup = False do_cleanup = False
# Must be absolute so that send_from_directory doesnt try to make it relative to backend/ # Must be absolute so that send_from_directory doesnt try to make it relative to backend/

@ -0,0 +1,5 @@
build:
docker:
changedetection: Dockerfile
run:
changedetection: python ./changedetection.py -d /datastore
Loading…
Cancel
Save