fix: poprawiono dockerfile po aktualizacji bibliotek (przestał budowac sie projekt)

This commit is contained in:
Norbert Walkowiak 2023-07-05 21:25:59 +02:00
parent ae61d3b3d2
commit f4abd2d3e5
1 changed files with 2 additions and 2 deletions

View File

@ -1,15 +1,15 @@
# Korzystanie z najnowszej wersji ubuntu
FROM ubuntu:latest
FROM ubuntu:20.04
# Instalujemy pakiety
RUN apt update && apt upgrade -y \
&& apt install -y python3.10 python3-pip curl \
&& pip install --user kaggle \
&& pip install --user pandas \
&& pip install --user tensorflow==2.12.0 \
&& pip install --user scikit-learn \
&& pip install --user matplotlib \
&& pip install --user keras \
&& pip install --user tensorflow==2.12.0 \
&& pip install --user numpy \
&& pip install --user opencv-python \
&& pip install --user sacred \