diff --git a/kmeans/Dockerfile b/kmeans/Dockerfile index 49cfb31..69c1224 100644 --- a/kmeans/Dockerfile +++ b/kmeans/Dockerfile @@ -7,6 +7,7 @@ ENV ALGORITHM_MAIN="/app/algorithm.py" # install algorithm dependencies COPY requirements.txt /app/ + RUN pip install -r /app/requirements.txt COPY . /app/