Skip to content

Commit 8397f84

Browse files
Fix Dockerfile
Requests is no more installed in python:3.11-slim-bullseye image. Issue: megadose#209
1 parent 14da70f commit 8397f84

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
FROM python:3.11-slim-bullseye
22
COPY . /opt/holehe
33
WORKDIR /opt/holehe
4-
RUN python3 setup.py install
4+
RUN pip3 install requests && \
5+
python3 setup.py install

0 commit comments

Comments
 (0)