-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DRIVERS-3077 Drop support for Python 3.8 (#567)
Co-authored-by: Noah Stapp <[email protected]>
- Loading branch information
Showing
11 changed files
with
55 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
FROM registry.access.redhat.com/ubi8/ubi:8.4 | ||
|
||
# Install mongodb 4.4 server to get older deps. | ||
RUN echo -e "\ | ||
[mongodb-enterprise-4.4] \n\ | ||
name=MongoDB Enterprise Repository \n\ | ||
baseurl=https://repo.mongodb.com/yum/redhat/8/mongodb-enterprise/4.4/$(uname -m)/ \n\ | ||
enabled = 1 \n\ | ||
gpgkey=https://pgp.mongodb.com/server-4.4.asc \n\ | ||
gpgcheck = 1\ | ||
" > /etc/yum.repos.d/mongodb-enterprise-4.4.repo | ||
|
||
RUN dnf update -y && \ | ||
dnf install -y \ | ||
git \ | ||
ca-certificates \ | ||
curl \ | ||
wget \ | ||
sudo \ | ||
make \ | ||
gnupg \ | ||
python3.9 \ | ||
mongodb-enterprise \ | ||
lsof < /dev/null > /dev/null | ||
|
||
# Alias python3 -> python3.9 | ||
RUN ln -f -s /usr/bin/python3.9 /usr/bin/python3 | ||
|
||
ARG USER_ID | ||
ARG GROUP_ID | ||
|
||
ENV DRIVERS_TOOLS=/root/drivers-tools | ||
ENV MONGO_ORCHESTRATION_HOME=/root/drivers-tools/.evergreen/orchestration | ||
ENV MONGODB_BINARIES=/root/drivers-tools/mongodb/bin | ||
ENV DOCKER_RUNNING=true | ||
|
||
COPY . /root/drivers-tools | ||
COPY .evergreen/docker/rhel8/*.sh /root |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters