Skip to content

Commit

Permalink
fix Dockerfile: remove redundant pip install command
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoelles committed Dec 3, 2024
1 parent 93026a1 commit 216f61e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docker/release.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,10 @@ ADD doc/sphinx/source/tutorial_notebooks ./tutorial_notebooks
# install
RUN /usr/local/bin/pip install $PACKAGE_HOME

RUN pip install $PACKAGE_HOME"
# Make sure the environment is activated:
RUN /bin/bash -c echo "Make sure pointcloudset is installed:"
RUN /bin/bash -c python -c "from pointcloudset import Dataset"
RUN /bin/bash -c "python -c 'import pointcloudset; print(pointcloudset.__version__); from pointcloudset import Dataset'"
RUN /bin/bash -c "pointcloudset --help || (echo 'CLI not installed' && exit 1)"

# Export environment variables
ENV LANG=C.UTF-8
Expand Down

0 comments on commit 216f61e

Please sign in to comment.