2023-04-21 11:26:52 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
2023-06-30 17:22:42 +02:00
|
|
|
RUN apt update && apt install -y python3-pip && pip3 install scikit-learn datasets torch pandas
|
2023-04-21 11:26:52 +02:00
|
|
|
|
2023-06-30 17:22:42 +02:00
|
|
|
ENV HF_HOME="/tmp/hf"
|
|
|
|
|
|
|
|
COPY . .
|