2024-12-09 10:57:15 -05:00
|
|
|
FROM --platform=linux/amd64 ubuntu:22.04
|
|
|
|
|
|
|
|
RUN apt-get update -y \
|
2024-12-11 22:47:11 -05:00
|
|
|
&& apt-get install -y python3 python3-pip git vim wget htop \
|
2024-12-09 10:57:15 -05:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
|
|
|
|
RUN pip install scipy
|