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

This commit is contained in:
Norbert Walkowiak 2023-07-05 22:03:04 +02:00
parent 192fb9be0c
commit 5c174a7e6a

View File

@ -1,5 +1,8 @@
FROM ubuntu:latest
RUN echo 'export PATH="/root/.local/bin:$PATH"' >> ~/.bashrc
#ENV PATH="/root/.local/bin:${PATH}"
RUN apt update && apt upgrade -y \
&& apt install -y python3.10 python3-pip curl
@ -16,9 +19,6 @@ RUN pip install --user kaggle \
&& pip install --user sacred \
&& pip install --user pymongo
RUN echo 'export PATH="/root/.local/bin:$PATH"' >> ~/.bashrc
#ENV PATH="/root/.local/bin:${PATH}"
RUN mkdir /app
WORKDIR /app