Skip to content

Cleaned up porting of OPIRecognition. #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Apr 7, 2024
Merged
11 changes: 8 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN groupadd --gid $USER_GID $USERNAME || true \
&& groupadd -g 107 input \
&& useradd -s /bin/bash --uid $USER_UID -g $USER_GID -G 107 -m $USERNAME \
&& apt-get update \
&& apt-get install -y sudo \
&& apt-get install -y sudo tesseract-ocr \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME

Expand Down Expand Up @@ -54,13 +54,18 @@ RUN chown $USER_UID:$USER_GID /workspace/$USERNAME

USER $USERNAME

# Copy to preload the ros packages
COPY ./ /workspace/$USERNAME/

# Install Tesseract

# Source the ROS setup file
RUN echo "source /opt/ros/${ROS_DISTRO}/setup.bash" >> ~/.bashrc

COPY --chown=$USERNAME ./ /workspace/$USERNAME

# Install ROS dependencies
# Rosdep update
RUN rosdep update


# Install ROS dependencies
RUN rosdep install --from-paths src --ignore-src --rosdistro humble -y
1 change: 0 additions & 1 deletion rove.repos
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ repositories:
type: git
url: https://github.com/clubcapra/ovis_ros2.git
version: master