We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab1c9bf commit 4e29b54Copy full SHA for 4e29b54
Dockerfile
@@ -3,7 +3,7 @@ WORKDIR /wheels
3
RUN apk add --no-cache \
4
ncurses-dev \
5
build-base
6
-COPY requirements.txt /opt/osintgram/
+COPY docker_reqs.txt /opt/osintgram/requirements.txt
7
RUN pip3 wheel -r /opt/osintgram/requirements.txt
8
9
docker_reqs.txt
@@ -0,0 +1,6 @@
1
+requests==2.24.0
2
+requests-toolbelt==0.9.1
+geopy>=2.0.0
+prettytable==0.7.2
+instagram-private-api==1.6.0
+gnureadline>=8.0.0
requirements.txt
@@ -3,4 +3,5 @@ requests-toolbelt==0.9.1
geopy>=2.0.0
prettytable==0.7.2
instagram-private-api==1.6.0
-gnureadline>=8.0.0
+gnureadline>=8.0.0; platform_system != "Windows"
+pyreadline==2.1; platform_system == "Windows"
0 commit comments