Zad 10. DVC - Dockerfile

This commit is contained in:
Cezary Gałązkiewicz 2022-06-06 01:24:16 +02:00
parent 796df44dde
commit b555abab87
1 changed files with 2 additions and 1 deletions

View File

@ -1,11 +1,12 @@
FROM ubuntu:latest
RUN apt-get -y update
RUN apt update && apt install -y python3-pip
RUN apt install -y unzip python3
RUN apt install -y sshpass openssh-client
RUN pip3 install pandas numpy sklearn tensorflow matplotlib
RUN pip3 install dvc
RUN pip3 install dvc[ssh] paramiko
RUN apt install -y sshpass openssh-client
WORKDIR /ium