Skip to content

Commit b9fcbeb

Browse files
chore(deps): update dependency python-dotenv to v1.2.2 (#28)
* chore(deps): update dependency python-dotenv to v1.2.2 * chore: update python version to align with python-dotenv python version requirements Signed-off-by: Frank Kong <frkong@redhat.com> --------- Signed-off-by: Frank Kong <frkong@redhat.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Frank Kong <frkong@redhat.com>
1 parent bfe0885 commit b9fcbeb

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Follow instructions in the main [Usage Docs](./README.md) for container usage an
7878

7979
#### Requirements
8080

81-
- **Python**: 3.8 or higher
81+
- **Python**: 3.10 or higher
8282
- **Node.js**: 22 or higher (version specified in `default.env`)
8383
- **Corepack**: To configure the yarn package managers on a project to project basis
8484
- **Git**: For cloning repositories

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ RUN microdnf update -y
1818
RUN microdnf install -y --nodocs \
1919
--setopt=install_weak_deps=0 \
2020
--setopt=tsflags=nodocs \
21-
python3 git-core patch python3-pip make g++ zlib-devel \
21+
python3.12 git-core patch python3.12-pip make g++ zlib-devel \
2222
brotli-devel openssl-devel buildah bash patch jq fuse-overlayfs \
2323
&& microdnf clean all
2424

2525
COPY requirements.txt .
2626

2727
# Install Python Dependencies
28-
RUN pip install --no-cache-dir -r requirements.txt
28+
RUN python3.12 -m pip install --no-cache-dir -r requirements.txt
2929

3030
COPY . .
3131

3232
RUN mkdir -p /workspace /outputs /config
3333

3434

35-
ENTRYPOINT ["python3", "-m", "src.rhdh_dynamic_plugin_factory"]
35+
ENTRYPOINT ["python3.12", "-m", "src.rhdh_dynamic_plugin_factory"]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Core runtime dependencies
22
PyYAML==6.0.3
3-
python-dotenv==1.1.1
3+
python-dotenv==1.2.2
44
rich==14.3.3

0 commit comments

Comments
 (0)