From 23922da4171642fff8369ef1adccd7dbed479aa9 Mon Sep 17 00:00:00 2001 From: Calvin Remsburg Date: Sun, 21 Jan 2024 14:00:34 -0600 Subject: [PATCH] ignore requirements.txt and just install package --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 0145262..a15d25f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,7 +15,7 @@ COPY requirements.txt /app/ # Install any needed packages specified in requirements.txt # Note: The requirements.txt should contain pan-os-upgrade==0.2.2 -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir pan-os-upgrade==0.2.2 # Set the locale to avoid issues with emoji rendering ENV LANG C.UTF-8