Skip to content

Commit

Permalink
Fix Dockerfile requirements.txt installation
Browse files Browse the repository at this point in the history
  • Loading branch information
PooyaFekri committed Oct 23, 2023
1 parent 01e1eaa commit f0852ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM --platform=linux/amd64 python:3.10.11
WORKDIR /code
RUN apt update && apt install gcc
COPY ./requirements/ /code/requirements/
COPY ./requirements.txt /code/requirements.txt
RUN pip install pip --upgrade
#installing requests befor the rest for lnpay compatibility
RUN pip install requests
Expand Down

0 comments on commit f0852ad

Please sign in to comment.