ium_487176/Dockerfile

12 lines
250 B
Docker
Raw Normal View History

2023-04-19 19:43:47 +02:00
FROM ubuntu:latest
RUN apt update && apt-get install -y python3-pip
WORKDIR /app
2023-04-19 19:43:47 +02:00
RUN pip install pandas
RUN pip install scikit-learn
RUN pip install datasets
RUN pip install torch
RUN pip install seaborn
COPY ./zad1.py ./
CMD ["python3", 'zad1.py']