From d0e081fa15880bb1fc16036dbe0e9f2b07f64c84 Mon Sep 17 00:00:00 2001 From: Joseph Date: Fri, 15 Nov 2024 12:43:16 +0000 Subject: [PATCH] removed extra brackets --- docker/python | 3 --- requirements.txt | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/docker/python b/docker/python index 7b8e6a3..b591f1a 100644 --- a/docker/python +++ b/docker/python @@ -4,9 +4,6 @@ WORKDIR /app COPY ./requirements.txt . RUN apk add --no-cache git - -# install dependencies -# --no-cache-dir flag reduces the image size RUN pip install --no-cache-dir -r requirements.txt # unbuffered mode better for output diff --git a/requirements.txt b/requirements.txt index d25cb8b..d3bada7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -git+https://${{PAT_TOKEN}}@github.com/deploymenttheory/jamftf-python-terraform-importer@main#egg=jamftf -git+https://${{PAT_TOKEN}}@github.com/thejoeker12/jamfpy@main#egg=jamfpy \ No newline at end of file +git+https://${PAT_TOKEN}@github.com/deploymenttheory/jamftf-python-terraform-importer@main#egg=jamftf +git+https://${PAT_TOKEN}@github.com/thejoeker12/jamfpy@main#egg=jamfpy \ No newline at end of file