From 5d738b8dee8fed3ebdca016ed42d72ac24a796c9 Mon Sep 17 00:00:00 2001 From: ilithebutterfly Date: Sat, 6 Apr 2024 15:16:19 -0400 Subject: [PATCH] Fixed tesseract-ocr install --- .devcontainer/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d6b9664..c2f0453 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -12,7 +12,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 @@ -29,7 +29,6 @@ USER $USERNAME COPY ./ /workspace/$USERNAME/ # Install Tesseract -RUN apt install tesseract-ocr # Source the ROS setup file RUN echo "source /opt/ros/${ROS_DISTRO}/setup.bash" >> ~/.bashrc && \