Skip to content

Commit

Permalink
Merge pull request #149 from ashwindasr/fix-docker-build
Browse files Browse the repository at this point in the history
use pip3 instead of uv
  • Loading branch information
ashwindasr authored Oct 17, 2024
2 parents c636ac7 + 2752d82 commit f8fbf2d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ USER "$USER_UID"
# Clone art-tools and install
RUN git clone https://github.com/openshift-eng/art-tools.git \
&& cd art-tools \
&& ./install.sh
&& pip3 install -e artcommon/ -e doozer/ -e elliott/ -e pyartcd/ -e ocp-build-data-validator/

# Install dependencies from requirements.txt
COPY requirements.txt ./
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ RUN pip3 install --upgrade -r requirements.txt \
# Clone art-tools and install
RUN cd art-tools \
&& git pull \
&& ./install.sh
&& pip3 install -e artcommon/ -e doozer/ -e elliott/ -e pyartcd/ -e ocp-build-data-validator/

COPY . .
2 changes: 1 addition & 1 deletion Dockerfile.update
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN pip3 install --upgrade -r requirements.txt \
# Clone art-tools and install
RUN cd art-tools \
&& git pull \
&& ./install.sh
&& pip3 install -e artcommon/ -e doozer/ -e elliott/ -e pyartcd/ -e ocp-build-data-validator/

COPY . .

Expand Down

0 comments on commit f8fbf2d

Please sign in to comment.