From 831166f38bd9046e8e98b819a03cc08ade21cc2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Mon, 27 Mar 2023 23:38:22 +0200 Subject: [PATCH] Intall dependencies using requirements.txt --- Dockerfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7389e11..1dcac9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,5 @@ FROM tiangolo/uwsgi-nginx-flask:python3.7 -RUN pip install requests +COPY ./backend /app -RUN pip install pandas - -RUN pip install Flask-BasicAuth - -RUN pip install bs4 - -COPY ./backend /app \ No newline at end of file +RUN pip install -r /app/requirements.txt \ No newline at end of file