From 4a5f80e4297c444e1e46be58c7039b1127ebd7f2 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Mon, 4 Dec 2023 14:58:33 +0800 Subject: [PATCH] Fix path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5cd728d..bfffba8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3-alpine COPY requirements.txt /app/ -RUN pip3 install -r requirements.txt +RUN pip3 install -r /app/requirements.txt COPY . /app