Skip to content

Commit

Permalink
chore: fix incorrect usage of pip
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaegers committed Oct 31, 2023
1 parent c75ad56 commit 97d9bba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN wget -qO /usr/local/share/ca-certificates/Cisco_Umbrella_Root_CA.crt https:/

# Install some tools via pip to get more recent versions
COPY .devcontainer/requirements.txt /tmp/requirements.txt
RUN python3 -m pip --no-cache-dir -r /tmp/requirements.txt \
RUN python3 -m pip install --no-cache-dir -r /tmp/requirements.txt \
&& rm -rf /tmp/requirements.txt

# Set default generator for CMake to Ninja
Expand Down

0 comments on commit 97d9bba

Please sign in to comment.