Fix syntax

This commit is contained in:
dgtlmoon
2022-10-23 15:59:13 +02:00
parent 0394a56be5
commit af799a097e
3 changed files with 7 additions and 6 deletions

View File

@@ -2,9 +2,9 @@ name: ChangeDetection.io Container Build Test
# Triggers the workflow on push or pull request events # Triggers the workflow on push or pull request events
on: [push, pull_request] on: [push, pull_request]
paths: paths:
- requirements.txt - requirements.txt
- Dockerfile - Dockerfile
# Changes to requirements.txt packages and Dockerfile may or may not always be compatible with arm etc, so worth testing # Changes to requirements.txt packages and Dockerfile may or may not always be compatible with arm etc, so worth testing
# @todo: some kind of path filter for requirements.txt and Dockerfile # @todo: some kind of path filter for requirements.txt and Dockerfile

View File

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

View File

@@ -1,8 +1,8 @@
flask~= 2.0 flask ~= 2.0
flask_wtf flask_wtf
eventlet>=0.31.0 eventlet >= 0.31.0
validators validators
timeago ~=1.0 timeago ~= 1.0
inscriptis ~= 2.2 inscriptis ~= 2.2
feedgen ~= 0.9 feedgen ~= 0.9
flask-login ~= 0.5 flask-login ~= 0.5