Skip to content

Commit

Permalink
Merge pull request #151 from UnitapApp/fix/fix-docker-file-requirments
Browse files Browse the repository at this point in the history
Fix Dockerfile requirements.txt installation
  • Loading branch information
PooyaFekri authored Oct 23, 2023
2 parents 01e1eaa + f0852ad commit 90bd8ad
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 90bd8ad

Please sign in to comment.