Docker requirements update (#3266)

* Pin mariadb package <= 1.1.0

- Recent update to 1.1.2 requires newer version of mariadb connector

* Change <= to <
This commit is contained in:
Oliver 2022-06-28 13:47:10 +10:00 committed by GitHub
parent 8f92fddd2d
commit f223ea224d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -39,9 +39,11 @@ jobs:
python3 ci/version_check.py
echo "git_commit_hash=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
echo "git_commit_date=$(git show -s --format=%ci)" >> $GITHUB_ENV
- name: Run Unit Tests
- name: Build Docker Image
run: |
docker-compose build
- name: Run Unit Tests
run: |
docker-compose run inventree-dev-server invoke update
docker-compose up -d
docker-compose run inventree-dev-server invoke wait

View File

@ -9,7 +9,7 @@ invoke>=1.4.0 # Invoke build tool
psycopg2>=2.9.1
mysqlclient>=2.0.3
pgcli>=3.1.0
mariadb>=1.0.7
mariadb>=1.0.7,<1.1.0
# gunicorn web server
gunicorn>=20.1.0