Skip to content

Commit

Permalink
Remove extra install keyword (#5086)
Browse files Browse the repository at this point in the history
  • Loading branch information
eastandwestwind committed Jul 16, 2024
1 parent e63a74f commit a03a8f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN apt-get update && \
# Install Python Dependencies

COPY dev-requirements.txt .
RUN pip install --user -U pip --no-cache-dir install -r dev-requirements.txt
RUN pip install --user -U pip --no-cache-dir -r dev-requirements.txt

# Activate a Python venv
RUN python3 -m venv /opt/fides
Expand All @@ -45,12 +45,12 @@ ENV PATH="/opt/fides/bin:${PATH}"
RUN pip --no-cache-dir --disable-pip-version-check install --upgrade pip setuptools wheel

COPY requirements.txt .
RUN pip install --no-cache-dir install -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY optional-requirements.txt .
RUN pip install --no-cache-dir install -r optional-requirements.txt
RUN pip install --no-cache-dir -r optional-requirements.txt

COPY dev-requirements.txt .
RUN pip install --no-cache-dir install -r dev-requirements.txt
RUN pip install --no-cache-dir -r dev-requirements.txt

##################
## Backend Base ##
Expand Down

0 comments on commit a03a8f6

Please sign in to comment.