Skip to content

Commit 4e29b54

Browse files
committed
seperate reqs file for Docker
1 parent ab1c9bf commit 4e29b54

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ WORKDIR /wheels
33
RUN apk add --no-cache \
44
ncurses-dev \
55
build-base
6-
COPY requirements.txt /opt/osintgram/
6+
COPY docker_reqs.txt /opt/osintgram/requirements.txt
77
RUN pip3 wheel -r /opt/osintgram/requirements.txt
88

99

docker_reqs.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
requests==2.24.0
2+
requests-toolbelt==0.9.1
3+
geopy>=2.0.0
4+
prettytable==0.7.2
5+
instagram-private-api==1.6.0
6+
gnureadline>=8.0.0

requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ requests-toolbelt==0.9.1
33
geopy>=2.0.0
44
prettytable==0.7.2
55
instagram-private-api==1.6.0
6-
gnureadline>=8.0.0
6+
gnureadline>=8.0.0; platform_system != "Windows"
7+
pyreadline==2.1; platform_system == "Windows"

0 commit comments

Comments
 (0)