From 98867cd570d6dd0b25ace38bb98153ba48176880 Mon Sep 17 00:00:00 2001 From: dennisbader Date: Sun, 3 Nov 2024 15:41:55 +0100 Subject: [PATCH] test --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 98179fbbdc..82c1ea47dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,13 +2,13 @@ FROM ubuntu:latest # setup packages RUN apt-get update -y -RUN apt-get install -y python3 python-is-python3 python3-pip default-jre -RUN pip install --upgrade pip +RUN apt-get install -y python3 python3-pip default-jre +RUN pip3 install --upgrade pip3 # install python requirements before copying the rest of the files # this way we can cache the requirements and not have to reinstall them COPY requirements/ /app/requirements/ -RUN pip install -r /app/requirements/dev-all.txt +RUN pip3 install -r /app/requirements/dev-all.txt # copy local files COPY . /app @@ -17,7 +17,7 @@ COPY . /app WORKDIR /app # install darts -RUN pip install -e . +RUN pip3 install -e . # assuming you are working from inside your darts directory: # docker build . -t darts-test:latest