ium_444421/Dockerfile

13 lines
246 B
Docker
Raw Normal View History

2022-04-29 19:17:50 +02:00
FROM ubuntu:latest
RUN apt update && apt install -y python3-pip
RUN pip3 install pandas
RUN pip3 install sklearn
RUN pip3 install seaborn
RUN pip3 install ipython
RUN pip3 install torch
RUN pip3 install numpy
WORKDIR /app
2022-04-29 19:53:30 +02:00
COPY ./training.py ./