You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM ${ARCH}/node:${NODE_VERSION}-alpine AS dependencies
5
+
6
+
RUN apk --no-cache add make g++ libc-dev curl bash python3 py3-pip cmake git vim ranger
7
+
8
+
RUN python3 --version
9
+
RUN git --version
10
+
RUN c++ --version
11
+
RUN g++ --version
12
+
13
+
RUN git clone https://github.com/baileympearson/mongodb-client-encryption.git && cd mongodb-client-encryption && git switch alpine && npm run install:libmongocrypt
14
+
15
+
WORKDIR /node-mongodb-native
16
+
COPY . .
17
+
RUN npm install ../mongodb-client-encryption
18
+
19
+
# RUN echo "host.docker.internal localhost" >>/etc/hosts
0 commit comments