From 5c174a7e6aaef6f37f3cc8760a4ed12856077ed5 Mon Sep 17 00:00:00 2001 From: Norbert Walkowiak Date: Wed, 5 Jul 2023 22:03:04 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20poprawiono=20dockerfile=20po=20aktualiza?= =?UTF-8?q?cji=20bibliotek=20(przesta=C5=82=20budowac=20sie=20projekt)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfile b/dockerfile index 15bd898..766a6ea 100644 --- a/dockerfile +++ b/dockerfile @@ -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