From f0852ad6043b27057875a7f1a0ce0071a2afd0fa Mon Sep 17 00:00:00 2001 From: Pooya Fekri Date: Mon, 23 Oct 2023 15:14:17 +0330 Subject: [PATCH] Fix Dockerfile requirements.txt installation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b7f28a34..581d16a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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