From 15af70666b995fd28fe1ccf5b3853d2ac345abcd Mon Sep 17 00:00:00 2001 From: Brad Macdonald Date: Thu, 30 Nov 2023 15:05:19 -0700 Subject: [PATCH] updates dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c1306799d..3958d5977 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,8 +11,10 @@ RUN apt-get update \ RUN pip3 install --upgrade pip -COPY . /synapsePythonClient WORKDIR /synapsePythonClient -RUN python3 setup.py install +COPY . . + +RUN pip install --no-cache-dir . + LABEL org.opencontainers.image.source='https://github.com/Sage-Bionetworks/synapsePythonClient'