From d877512d6c2298301b0300ee072ed9bdc787eff0 Mon Sep 17 00:00:00 2001 From: s434766 Date: Sat, 17 Apr 2021 13:50:43 +0200 Subject: [PATCH] LAB5 fix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1d36395..d4a4e79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:latest -RUN apt update && apt install -y python3-pip && pip3 install setuptools && pip3 install numpy && pip3 install pandas && pip3 install wget && pip3 install scikit-learn && pip3 install torch==1.8.1+cu102 torchvision==0.9.1+cu102 torchaudio===0.8.1 -f https://download.pytorch.org/whl/torch_stable.html &&rm -rf /var/lib/apt/lists/* +RUN apt update && apt install -y python3-pip && pip3 install setuptools && pip3 install numpy && pip3 install pandas && pip3 install wget && pip3 install scikit-learn && pip3 install torch==1.8.1+cu102 torchvision==0.9.1+cu102 torchaudio===0.8.1 -f https://download.pytorch.org/whl/torch_stable.html && rm -rf /var/lib/apt/lists/* WORKDIR /app