Skip to content

Commit

Permalink
fix(ci/cd): Upgrade MongoDB
Browse files Browse the repository at this point in the history
  • Loading branch information
annelhote committed Dec 16, 2024
1 parent b8b5bee commit ba92de1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
28 changes: 14 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@ RUN apt-get update \
&& apt-get install -y wget \
gnupg2

RUN wget -qO - https://www.mongodb.org/static/pgp/server-3.4.asc | apt-key add -
RUN wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | apt-key add -

RUN echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-3.4.list
RUN echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-4.2.list

RUN apt-get update && apt-get install -y --no-install-recommends \
python3.8 \
python3-pip \
python3.8-dev \
curl \
g++ \
git \
groff \
jq \
less \
libpython3.8 \
libpython3.8-dev \
jq \
mongodb-org \
locales \
locales-all \
python3-setuptools \
g++ \
git \
python3-dev \
mongodb-org \
npm \
curl \
groff \
less \
python3-dev \
python3-pip \
python3-setuptools \
python3.8 \
python3.8-dev \
unzip \
zip \
&& \
Expand Down
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
# Dev dependencies
pytest==6.2.3
pytest-mock==3.5.1
pytest==6.2.3
requests-mock==1.9.2

# Dependencies
beautifulsoup4==4.8.2
boto3==1.26.41
CurrencyConverter==0.16
elasticsearch==7.8.0
Flask==2.1.0
Flask-Bootstrap==3.3.7.1
Werkzeug==2.2.2
Flask==2.1.0
jsonlines==3.1.0
lxml==4.6.3
multiprocess==0.70.12.2
numpy~=1.19.5
pandas==1.2.5
jsonlines==3.1.0
xlrd==2.0.1
openpyxl==3.0.7
pandas==1.2.5
pymongo==3.8.0
python-dateutil~=2.8.1
python-keystoneclient==4.0.0
Expand All @@ -25,7 +24,8 @@ redis==4.3.4
requests
retry~=0.9.2
rq==1.9.0
timeout-decorator==0.5.0
tokenizers==0.10.1
Unidecode==1.3.2
timeout-decorator==0.5.0
boto3==1.26.41
Werkzeug==2.2.2
xlrd==2.0.1

0 comments on commit ba92de1

Please sign in to comment.