ium_440058/lab06/Dockerfile

7 lines
453 B
Docker
Raw Normal View History

2021-05-24 11:56:06 +02:00
FROM ubuntu:latest
RUN apt-get update && apt-get install -y python3-pip && pip3 install setuptools && pip3 install numpy && pip3 install pandas && pip3 install wget && pip3 install scikit-learn && pip3 install matplotlib && rm -rf /var/lib/apt/lists/*
RUN pip3 install torch torchvision torchaudio
RUN pip3 install sacred && pip3 install GitPython && pip3 install pymongo
WORKDIR /app
2021-05-24 15:14:45 +02:00
COPY ./../pytorch-example.py ./
COPY ./../scared-example-file.py ./