Skip to content

Commit

Permalink
Fix pip installation
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Jul 10, 2024
1 parent d4dbbd2 commit cc0b1a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .docker/lint/c-lint.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
FROM python:3.11.4

RUN python -m ensurepip --upgrade
RUN pip install -U pip
RUN pip install cpplint
RUN apt update && apt install clang-format -y
RUN apt update -y && apt upgrade -y && apt install clang-format -y

RUN mkdir /code
WORKDIR /code
Expand Down
3 changes: 2 additions & 1 deletion .docker/lint/py-lint.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM python:3.11.4

RUN pip install -U pip pip-tools
RUN python -m ensurepip --upgrade
RUN pip install pip-tools

RUN mkdir /code
WORKDIR /code
Expand Down

0 comments on commit cc0b1a8

Please sign in to comment.