Skip to content

Commit

Permalink
Merge pull request #101 from aiondemand/feature/pkg_config_addition
Browse files Browse the repository at this point in the history
Feature/pkg config addition
  • Loading branch information
Taniya-Das authored Jul 13, 2023
2 parents d637744 + 80be1c3 commit 19c387c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
- name: Test with pytest
run: |
source venv/bin/activate
pytest ./src/tests/
pytest ./src/tests/
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.11-slim-bullseye

# default-mysql-client is not necessary, but can be useful when debugging connection issues.
RUN apt-get update && apt-get -y install python3-dev default-libmysqlclient-dev build-essential default-mysql-client
RUN apt-get update && apt-get -y install python3-dev default-libmysqlclient-dev build-essential default-mysql-client pkg-config

WORKDIR /app

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ dependencies = [
"httpx==0.24.1",
"sickle==0.7.0",
"xmltodict==0.13.0",
"python-multipart==0.0.6"
"python-multipart==0.0.6",
"mysql-connector-python==8.0.33",
]
readme = "README.md"

Expand Down

0 comments on commit 19c387c

Please sign in to comment.