Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
# Use the official Python image as a base image
|
2 |
FROM python:3.8-slim-buster
|
3 |
|
|
|
|
|
4 |
RUN apt-get install gnupg curl
|
5 |
|
6 |
RUN curl -fsSL https://pgp.mongodb.com/server-7.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg --dearmor
|
|
|
1 |
# Use the official Python image as a base image
|
2 |
FROM python:3.8-slim-buster
|
3 |
|
4 |
+
RUN apt-get update
|
5 |
+
|
6 |
RUN apt-get install gnupg curl
|
7 |
|
8 |
RUN curl -fsSL https://pgp.mongodb.com/server-7.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg --dearmor
|