From a2cb5477ec069ca3305c7a952d1914507d5d2b6e Mon Sep 17 00:00:00 2001 From: Matthew Warren Date: Fri, 17 May 2024 16:55:45 -0400 Subject: [PATCH] remove prior debug of docker build --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a6f821..556c184 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ RUN apt-get update && apt-get install -y \ WORKDIR /app COPY . /app -RUN pip install -e . +RUN pip install . +RUN rm -rf /app/ ENTRYPOINT [ "cloudtruth-dynamic-importer" ]