Compare commits

...

3 Commits

Author SHA1 Message Date
dgtlmoon
ef2a47aa85 trigger 2022-10-23 16:01:18 +02:00
dgtlmoon
b2757a9c97 Ahh github 2022-10-23 16:01:02 +02:00
dgtlmoon
af799a097e Fix syntax 2022-10-23 15:59:13 +02:00
3 changed files with 16 additions and 4 deletions

View File

@@ -1,7 +1,17 @@
name: ChangeDetection.io Container Build Test
# Triggers the workflow on push or pull request events
on: [push, pull_request]
# This line doesnt work, even tho it is the documented one
#on: [push, pull_request]
on:
push:
paths:
- requirements.txt
- Dockerfile
pull_request:
paths:
- requirements.txt
- Dockerfile

View File

@@ -64,6 +64,7 @@ EXPOSE 5000
# The actual flask app
COPY changedetectionio /app/changedetectionio
# The eventlet server wrapper
COPY changedetection.py /app/changedetection.py

View File

@@ -1,8 +1,8 @@
flask~= 2.0
flask ~= 2.0
flask_wtf
eventlet>=0.31.0
eventlet >= 0.31.0
validators
timeago ~=1.0
timeago ~= 1.0
inscriptis ~= 2.2
feedgen ~= 0.9
flask-login ~= 0.5
@@ -47,3 +47,4 @@ selenium ~= 4.1.0
werkzeug ~= 2.0.0
# playwright is installed at Dockerfile build time because it's not available on all platforms