diff --git a/Dockerfile b/Dockerfile index 278ff10..818eb02 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 && apt install python3-setuptools +RUN apt update && apt install -y python3 && apt install -y python3-pip # 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 @@ -10,6 +10,7 @@ WORKDIR /app # Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes) COPY ["requirements.txt", "./"] RUN pip3 install -r requirements.txt +RUN pip3 install 'dvc[ssh]' paramiko # Skopiujmy nasz skrypt do katalogu /app w kontenerze #COPY ./Docker_todo.sh ./ #COPY ./Zadanie_06_evaluate.py ./ diff --git a/requirements.txt b/requirements.txt index 8691c61..5ad2f58 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,6 +6,4 @@ matplotlib sacred mlflow pymongo -dvc -dvc[ssh] -paramiko \ No newline at end of file +dvc \ No newline at end of file