From b761495441b342620604f2f7a6349ed51ae8f174 Mon Sep 17 00:00:00 2001 From: Markus Rosenstihl Date: Thu, 4 Dec 2025 19:42:18 +0100 Subject: [PATCH] clean up Dockerfile --- isotables/Dockerfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/isotables/Dockerfile b/isotables/Dockerfile index b22285c..4ed45b5 100644 --- a/isotables/Dockerfile +++ b/isotables/Dockerfile @@ -32,19 +32,12 @@ ENV PIP_ROOT_USER_ACTION=ignore # Download dependencies as a separate step to take advantage of Docker's caching. # Leverage a cache mount to /root/.cache/pip to speed up subsequent builds. -# Leverage a bind mount to requirements.txt to avoid having to copy them into +# Leverage a bind mount to requirements.txt to avoid having to copy the file # into this layer. RUN --mount=type=cache,target=/root/.cache/pip \ --mount=type=bind,source=requirements.txt,target=/requirements.txt \ python -m pip install -r /requirements.txt -## Copy the Django project and install dependencies -#COPY requirements.txt /app/ -# -## run this command to install all dependencies -#RUN pip install --no-cache-dir -r requirements.txt -##RUN pip install --no-cache-dir django-tailwind - # Switch to the non-privileged user to run the application. USER appuser