Skip to content

Commit

Permalink
update mongodb version
Browse files Browse the repository at this point in the history
  • Loading branch information
deronsmith committed Aug 1, 2024
1 parent 63cb178 commit c844a7a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions hms_mongo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@



FROM ubuntu:23.10
FROM ubuntu:24.10
ENV MONGO_VERSION=6.0.16

RUN apt-get update && apt-get install -y gnupg curl

Expand All @@ -17,11 +18,11 @@ RUN echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-6.

RUN apt-get update && \
apt-get install -y \
mongodb-org=6.0.8 \
mongodb-org-database=6.0.8 \
mongodb-org-server=6.0.8 \
mongodb-org-mongos=6.0.8 \
mongodb-org-tools=6.0.8
mongodb-org=${MONGO_VERSION} \
mongodb-org-database=${MONGO_VERSION} \
mongodb-org-server=${MONGO_VERSION} \
mongodb-org-mongos=${MONGO_VERSION} \
mongodb-org-tools=${MONGO_VERSION}

RUN mkdir -p /data/db

Expand Down

0 comments on commit c844a7a

Please sign in to comment.