Skip to content

Commit

Permalink
add command to run pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
thanh-nguyen-dang committed Jul 8, 2024
1 parent 881bc90 commit 45a5779
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dockers/spark/master/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ RUN python -m poetry config virtualenvs.create false \
&& python -m poetry install -vv --only main --no-interaction \
&& python -m poetry show -v

RUN pip install .
RUN python -m pip install --upgrade pip
RUN python -m pip install .

EXPOSE 8080 7077 6066

Expand Down
3 changes: 2 additions & 1 deletion dockers/spark/worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ RUN python -m poetry config virtualenvs.create false \
&& python -m poetry install -vv --only main --no-interaction \
&& python -m poetry show -v

RUN pip install .
RUN python -m pip install --upgrade pip
RUN python -m pip install .

EXPOSE 8081

Expand Down

0 comments on commit 45a5779

Please sign in to comment.