update app: use custom requirements and other docker-compose adaptations
This commit is contained in:
parent
7036420059
commit
78efb59f9f
@ -21,8 +21,9 @@ RUN echo "appuser ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
|
|||||||
COPY vendor/GeoNature-citizen/ /home/appuser/citizen/
|
COPY vendor/GeoNature-citizen/ /home/appuser/citizen/
|
||||||
|
|
||||||
# patches
|
# patches
|
||||||
#COPY patches/back/requirements.txt /home/appuser/citizen/backend/requirements.txt #use the requirements from the GnC repo
|
#NB: use custom requirements.txt for avoiding fiona installation (GDAL issue)
|
||||||
COPY patches/back/default_config.toml /home/appuser/citizen/config/default_config.toml
|
COPY patches/back/requirements.txt /home/appuser/citizen/backend/requirements.txt
|
||||||
|
COPY patches/back/default_config.toml /home/appuser/citizen/config/config.toml
|
||||||
COPY patches/settings.ini /home/appuser/citizen/config/settings.ini
|
COPY patches/settings.ini /home/appuser/citizen/config/settings.ini
|
||||||
COPY patches/back/wsgi.py /home/appuser/citizen/backend/wsgi.py
|
COPY patches/back/wsgi.py /home/appuser/citizen/backend/wsgi.py
|
||||||
COPY patches/back/server.py /home/appuser/citizen/backend/server.py
|
COPY patches/back/server.py /home/appuser/citizen/backend/server.py
|
||||||
|
@ -41,13 +41,14 @@ services:
|
|||||||
- ./vendor/GeoNature-citizen/backend/var/log/:/home/appuser/citizen/backend/var/log/
|
- ./vendor/GeoNature-citizen/backend/var/log/:/home/appuser/citizen/backend/var/log/
|
||||||
- ./patches/settings.ini:/home/appuser/citizen/config/settings.ini
|
- ./patches/settings.ini:/home/appuser/citizen/config/settings.ini
|
||||||
- ./patches/settings.ini:/home/appuser/citizen/backend/config/settings.ini
|
- ./patches/settings.ini:/home/appuser/citizen/backend/config/settings.ini
|
||||||
- ./patches/back/default_config.toml:/home/appuser/citizen/config/default_config.toml
|
- ./patches/back/default_config.toml:/home/appuser/citizen/config/config.toml
|
||||||
- ./patches/back/start_gunicorn.sh:/home/appuser/citizen/backend/start_gunicorn.sh
|
- ./patches/back/start_gunicorn.sh:/home/appuser/citizen/backend/start_gunicorn.sh
|
||||||
- ./patches/back/wsgi.py:/home/appuser/citizen/backend/wsgi.py
|
- ./patches/back/wsgi.py:/home/appuser/citizen/backend/wsgi.py
|
||||||
- ./patches/back/server.py:/home/appuser/citizen/backend/server.py
|
- ./patches/back/server.py:/home/appuser/citizen/backend/server.py
|
||||||
ports:
|
ports:
|
||||||
- "5002:5002"
|
- "5002:5002"
|
||||||
command: bash start_gunicorn.sh
|
#command: bash start_gunicorn.sh
|
||||||
|
command: python wsgi.py
|
||||||
taxhub:
|
taxhub:
|
||||||
build:
|
build:
|
||||||
dockerfile: ./Dockerfile-taxhub
|
dockerfile: ./Dockerfile-taxhub
|
||||||
|
@ -1,35 +1,53 @@
|
|||||||
certifi==2019.6.16
|
attrs==21.4.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
|
||||||
chardet==3.0.4
|
certifi==2021.10.8; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0"
|
||||||
Click==7.0
|
charset-normalizer==2.0.11; python_full_version >= "3.6.0" and python_version >= "3"
|
||||||
colorlog==4.0.2
|
click-plugins==1.1.1
|
||||||
flasgger==0.9.3
|
click==7.1.2; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6" and python_version < "4"
|
||||||
Flask==1.1.1
|
cligj==0.7.2; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.3.0" and python_version < "4"
|
||||||
Flask-Admin==1.5.3
|
coloredlogs==15.0.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
|
||||||
Flask-CKEditor==0.4.3
|
# fiona==1.8.21
|
||||||
Flask-Cors==3.0.8
|
flasgger==0.9.5
|
||||||
Flask-JWT-Extended==3.21.0
|
flask-admin==1.6.0; python_version >= "3.6"
|
||||||
Flask-SQLAlchemy==2.4.0
|
flask-caching==1.10.1; python_version >= "3.5"
|
||||||
GeoAlchemy2==0.6.3
|
flask-ckeditor==0.4.6
|
||||||
|
flask-cors==3.0.10
|
||||||
|
flask-jwt-extended==4.3.1; python_version >= "3.6" and python_version < "4"
|
||||||
|
flask-sqlalchemy==2.5.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0")
|
||||||
|
flask==1.1.4; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
|
||||||
|
geoalchemy2==0.8.5
|
||||||
|
geog==0.0.2
|
||||||
geojson==2.5.0
|
geojson==2.5.0
|
||||||
gunicorn==20.0.4
|
greenlet==1.1.2; python_version >= "3" and python_full_version < "3.0.0" and (platform_machine == "aarch64" or platform_machine == "ppc64le" or platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "AMD64" or platform_machine == "win32" or platform_machine == "WIN32") and (python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0") or python_version >= "3" and (platform_machine == "aarch64" or platform_machine == "ppc64le" or platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "AMD64" or platform_machine == "win32" or platform_machine == "WIN32") and (python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0") and python_full_version >= "3.5.0"
|
||||||
idna==2.8
|
gunicorn==20.1.0; python_version >= "3.5"
|
||||||
itsdangerous==1.1.0
|
humanfriendly==10.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
|
||||||
Jinja2==2.10.1
|
idna==3.3; python_version >= "3.5" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" and python_version >= "3.5"
|
||||||
jsonschema==2.6.0
|
importlib-metadata==4.8.3; python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "3.8" or python_full_version >= "3.6.0" and python_version < "3.8" and python_version >= "3.6"
|
||||||
MarkupSafe==1.1.1
|
itsdangerous==1.1.0; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||||
mistune==0.8.4
|
jinja2==2.11.3; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||||
passlib==1.7.1
|
jsonschema==4.0.0
|
||||||
psycopg2-binary==2.8.3
|
markupsafe==2.0.1; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||||
PyJWT==1.7.1
|
marshmallow==3.14.1; python_version >= "3.6"
|
||||||
PyYAML==5.1.2
|
mistune==2.0.2
|
||||||
requests==2.22.0
|
munch==2.5.0
|
||||||
Shapely==1.7.1
|
numpy==1.19.5; python_version >= "3.6"
|
||||||
six==1.12.0
|
passlib==1.7.4
|
||||||
SQLAlchemy==1.3.7
|
psycopg2-binary==2.9.3; python_version >= "3.6"
|
||||||
toml==0.10.0
|
pyjwt==2.3.0; python_version >= "3.6" and python_version < "4"
|
||||||
urllib3==1.25.3
|
pyreadline3==3.4.1; sys_platform == "win32" and python_version >= "3.8" and (python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0")
|
||||||
Werkzeug==0.15.5
|
pyreadline==2.1; sys_platform == "win32" and python_version < "3.8" and (python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0")
|
||||||
WTForms==2.2.1
|
pyrsistent==0.18.0; python_version >= "3.6"
|
||||||
gunicorn==20.0.4
|
python-dateutil==2.8.2; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.3.0"
|
||||||
httplib2==0.19.0
|
pyyaml==6.0; python_version >= "3.6"
|
||||||
|
requests==2.27.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.6.0")
|
||||||
|
shapely==1.8.0; python_version >= "3.6"
|
||||||
|
six==1.16.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.3.0"
|
||||||
|
sqlalchemy==1.4.31; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.6.0")
|
||||||
|
toml==0.10.2; (python_version >= "2.6" and python_full_version < "3.0.0") or (python_full_version >= "3.3.0")
|
||||||
|
typing-extensions==4.0.1; python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "3.8" or python_full_version >= "3.6.0" and python_version < "3.8" and python_version >= "3.6"
|
||||||
|
urllib3==1.26.8; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" and python_version < "4"
|
||||||
|
# utils-flask-sqlalchemy-geo==0.2.8
|
||||||
|
utils-flask-sqlalchemy==0.2.6
|
||||||
|
werkzeug==1.0.1; python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "4" or python_version >= "3.6" and python_version < "4" and python_full_version >= "3.5.0"
|
||||||
|
wtforms==3.0.0; python_version >= "3.6"
|
||||||
xlwt==1.3.0
|
xlwt==1.3.0
|
||||||
|
zipp==3.6.0; python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "3.8" or python_full_version >= "3.6.0" and python_version < "3.8" and python_version >= "3.6"
|
||||||
|
Loading…
Reference in New Issue
Block a user