Skip to content

Commit

Permalink
setuptools update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Drobena committed Sep 3, 2024
1 parent 0843113 commit 4b05f35
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
13 changes: 5 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,15 @@ RUN curl -ksL https://certs.corp.redhat.com/certs/2015-IT-Root-CA.pem -o /etc/pk
curl -ksL https://certs.corp.redhat.com/certs/2022-IT-Root-CA.pem -o /etc/pki/ca-trust/source/anchors/2022-IT-Root-CA.pem && \
update-ca-trust

RUN microdnf install --nodocs -y python3.11 unzip tar git-core && \
python3.11 -m venv $VENV && \
pip install --no-cache-dir -U pip

# Stage 2: Builder
FROM base AS builder

COPY . $HOME

RUN pip install --no-cache-dir -r requirements.txt && \
RUN microdnf install --nodocs -y python3.11 unzip tar git-core && \
python3.11 -m venv $VENV && \
pip install --no-cache-dir -U pip \
pip install --no-cache-dir -r requirements.txt && \
pip install --no-cache-dir .


# Stage 3: Final
FROM base AS final

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
requires = ["setuptools>=70", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[project]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ PyYAML>=6.0
requests>=2.31.0
sentry-sdk>=1.37.1
watchtower>=3.0.0

setuptools>=70.0.0
aiobotocore==2.14.0
s3fs==2024.6.1

0 comments on commit 4b05f35

Please sign in to comment.