diff --git a/Dockerfile b/Dockerfile index e9b11a2..278ff10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:latest # Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes) -RUN apt update && apt install -y python3.8 && apt install -y python3-pip +RUN apt update && apt install -y python3.8 && apt install -y python3-pip && apt install python3-setuptools # Stwórzmy w kontenerze (jeśli nie istnieje) katalog /app i przejdźmy do niego (wszystkie kolejne polecenia RUN, CMD, ENTRYPOINT, COPY i ADD będą w nim wykonywane) WORKDIR /app diff --git a/requirements.txt b/requirements.txt index fe68748..8691c61 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,5 +7,5 @@ sacred mlflow pymongo dvc -paramiko -dvc[ssh] \ No newline at end of file +dvc[ssh] +paramiko \ No newline at end of file