ium_434704/Dockerfile

13 lines
206 B
Docker
Raw Normal View History

2021-04-10 20:09:58 +02:00
FROM ubuntu:latest
RUN apt-get update && apt-get install -y python3 python3-pip
WORKDIR /app
COPY . .
2021-04-10 21:28:05 +02:00
RUN pip3 install --user kaggle
RUN pip3 install --user pandas
RUN pip3 install --user scikit-learn
2021-04-10 20:09:58 +02:00