Skip to content

Commit

Permalink
fix: Bump MongoDB client repo to version 7.0
Browse files Browse the repository at this point in the history
To match what Tutor uses for Redwood, go with version 7.0 of the
MongoDB client.
  • Loading branch information
fghaas committed Oct 4, 2024
1 parent a52bdf2 commit 934e6fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorbackup/templates/backup/build/backup/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ ENV PYTHONUNBUFFERED 1

RUN apt-get update && \
apt-get install -y curl gnupg
RUN curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | gpg --dearmor > /usr/share/keyrings/mongodb-ce-archive-keyring.gpg && \
echo "deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-ce-archive-keyring.gpg] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/4.4 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-4.4.list && \
RUN curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | gpg --dearmor > /usr/share/keyrings/mongodb-ce-archive-keyring.gpg && \
echo "deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-ce-archive-keyring.gpg] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-7.0.list && \
apt-get update && \
apt-get install -y --no-install-recommends mysql-client-8.0 mongodb-org-tools python3-pip python3-venv python-is-python3
RUN python3 -m venv /s3/venv/
Expand Down

0 comments on commit 934e6fe

Please sign in to comment.