Skip to content

Commit 065cd47

Browse files
committed
fix setup.bash
1 parent 607f17d commit 065cd47

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/naviton/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ARG BASE_IMAGE=hrjp/ros:noetic_cudagl
22
FROM $BASE_IMAGE
33

4-
RUN cd /home/catkin_ws/src
5-
RUN git clone https://github.com/KobeKosenRobotics/naviton_navigation.git
4+
RUN cd /home/catkin_ws/src && \
5+
git clone https://github.com/KobeKosenRobotics/naviton_navigation.git
66
RUN ./naviton_navigation/setup.bash
7-
7+
RUN apt clean
88
WORKDIR /home/catkin_ws

setup.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
CURRENT_PATH=$(cd $(dirname $0);pwd)
4-
cd CURRENT_PATH
4+
cd $CURRENT_PATH
55
sudo apt update
66
sudo apt install -y python3-vcstool
77
vcs import depend < depend_packages.repos --recursive

0 commit comments

Comments
 (0)