From 4e5ae7376ca44c2628999db6f697922b8d41b8d9 Mon Sep 17 00:00:00 2001 From: kiriclope Date: Fri, 15 Sep 2023 15:03:49 +0200 Subject: [PATCH] modified dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b470555..caa2067 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.8-alpine WORKDIR /src/app COPY requirements.txt ./ -RUN pip install --no-cache-dir -r requirements.txt +RUN pip3 install --no-cache-dir -r requirements.txt COPY . . CMD [ "python", "./src/model/rate_model.py" ]