Skip to content

Commit

Permalink
add cli to pieces images
Browse files Browse the repository at this point in the history
  • Loading branch information
vinicvaz committed Oct 16, 2023
1 parent 0623798 commit 4615465
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions Dockerfile-domino-piece.dev
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ COPY src/domino /home/domino/domino_py/src/domino
WORKDIR /home/domino/domino_py
RUN chmod -R 777 .
RUN pip install --no-cache -e .[piece]
RUN pip install --no-cache -e .[cli]

WORKDIR /home
1 change: 1 addition & 0 deletions Dockerfile-domino-piece.gpu-dev
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@ COPY src/domino /home/domino/domino_py/src/domino
WORKDIR /home/domino/domino_py
RUN chmod -R 777 .
RUN pip install --no-cache -e .[piece]
RUN pip install --no-cache -e .[cli]

WORKDIR /home
3 changes: 2 additions & 1 deletion Dockerfile-domino-piece.gpu-prod
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ RUN chmod -R 777 .

# pip install Domino from PyPI
RUN python3 -m pip install --upgrade pip \
pip install domino-py[piece]
pip install domino-py[piece] \
pip install domino-py[cli]

WORKDIR /home
3 changes: 2 additions & 1 deletion Dockerfile-domino-piece.prod
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ RUN chmod -R 777 .

# pip install Domino from PyPI
RUN /usr/local/bin/python -m pip install --upgrade pip \
pip install domino-py[piece]
pip install domino-py[piece] \
pip install domino-py[cli]

WORKDIR /home
1 change: 0 additions & 1 deletion src/domino/client/github_rest_client.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from github import Github
import os


class GithubRestClient(Github):
Expand Down

0 comments on commit 4615465

Please sign in to comment.