ium_487194/Dockerfile

23 lines
248 B
Docker
Raw Normal View History

2023-05-12 18:41:25 +02:00
FROM python:3.8-slim-buster
2023-04-04 15:31:03 +02:00
2023-05-12 23:53:25 +02:00
WORKDIR /
2023-05-12 18:41:25 +02:00
RUN apt-get update && apt-get install -y \
figlet \
unzip \
&& rm -rf /var/lib/apt/lists/*
2023-05-12 23:53:25 +02:00
2023-05-12 18:41:25 +02:00
RUN pip install --upgrade pip
2023-05-12 23:53:25 +02:00
2023-05-12 18:41:25 +02:00
RUN pip install torch pandas numpy scikit-learn kaggle
2023-05-12 23:53:25 +02:00
COPY . /
2023-04-04 16:38:04 +02:00
2023-04-04 23:18:57 +02:00