Dockerfile

This commit is contained in:
ulaniuk 2022-06-05 10:20:58 +02:00
parent 863563717b
commit e35c6903a2

View File

@ -1,22 +1,13 @@
FROM python:3.7
FROM ubuntu:latest
WORKDIR /
RUN apt update && apt install -y python3-pip
ARG KAGGLE_USERNAME
ARG KAGGLE_KEY
ENV KAGGLE_USERNAME=${KAGGLE_USERNAME}
ENV KAGGLE_KEY=${KAGGLE_KEY}
RUN apt update
RUN apt-get update
RUN apt install python3-pip -y
RUN pip3 install --user kaggle
RUN pip3 install --user pandas
RUN pip3 install --user sklearn
RUN pip3 install --user torch
RUN pip3 install --user tqdm
RUN pip3 install --user seaborn
RUN pip3 install kaggle
RUN pip3 install pandas
RUN pip3 install sklearn
RUN pip3 install torch
RUN pip3 install tqdm
RUN pip3 install seaborn
RUN pip3 install dvc
RUN pip3 install dvc[ssh] paramiko