aboutsummaryrefslogtreecommitdiffstats
path: root/noetic-llama/.devcontainer
diff options
context:
space:
mode:
Diffstat (limited to 'noetic-llama/.devcontainer')
-rw-r--r--noetic-llama/.devcontainer/Dockerfile4
-rw-r--r--noetic-llama/.devcontainer/devcontainer.json3
2 files changed, 5 insertions, 2 deletions
diff --git a/noetic-llama/.devcontainer/Dockerfile b/noetic-llama/.devcontainer/Dockerfile
index d86a5e7..6992623 100644
--- a/noetic-llama/.devcontainer/Dockerfile
+++ b/noetic-llama/.devcontainer/Dockerfile
@@ -21,10 +21,12 @@ RUN sudo usermod --append --groups video $USERNAME
RUN sudo apt update && sudo apt upgrade -y
# Install Git
-RUN sudo apt install -y git
+RUN sudo apt install -y git python3-pip
# Rosdep update
RUN rosdep update
+RUN pip3 install jinja2 ollama geocoder requests python-dotenv parsimonious
+
# Source the ROS setup file
RUN echo "source /opt/ros/${ROS_DISTRO}/setup.bash" >> ~/.bashrc
diff --git a/noetic-llama/.devcontainer/devcontainer.json b/noetic-llama/.devcontainer/devcontainer.json
index 64a355a..53bcc43 100644
--- a/noetic-llama/.devcontainer/devcontainer.json
+++ b/noetic-llama/.devcontainer/devcontainer.json
@@ -13,7 +13,8 @@
"--security-opt=apparmor:unconfined",
"--volume=/tmp/.X11-unix:/tmp/.X11-unix",
"--volume=/home/agilex/.Xauthority:/home/ros/.Xauthority",
- "--gpus=all"
+ "--gpus=all",
+ "--env-file","apikeys.env"
],
"containerEnv": {
"DISPLAY": ":0",