From 3d4028c2502bb9644cce56d5e65f427ab55b227c Mon Sep 17 00:00:00 2001 From: Wei Xu Date: Mon, 15 Jul 2024 10:48:25 +0800 Subject: [PATCH] techtrends: fix incorrect root path in Dockerfile --- techtrends/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/techtrends/Dockerfile b/techtrends/Dockerfile index 8cb0fa2..7c36d38 100644 --- a/techtrends/Dockerfile +++ b/techtrends/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app COPY . /app # Install packages defined in the requirements.txt file -RUN pip install -r requirements.txt +RUN cd techtrends && pip install -r requirements.txt # Initialize the database with pre-defined posts RUN python init_db.py