Skip to content

Commit 0b59030

Browse files
committed
Fix docker files
Signed-off-by: Maria Teresa Ortega <teresa.ortega0903@gmail.com>
1 parent d342a31 commit 0b59030

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

examples/beluga/docker/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
21
FROM ros:jazzy-ros-base
32

4-
53
RUN apt-get update && apt-get install -y \
64
curl \
75
&& rm -rf /var/lib/apt/lists/*
@@ -14,6 +12,9 @@ RUN rosdep init || true \
1412
&& rosdep update
1513

1614
RUN echo "source /opt/ros/jazzy/setup.bash" >> ~/.bashrc
17-
RUN apt-get update
15+
16+
COPY . .
17+
18+
RUN pip install
1819

1920
CMD ["bash"]
Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
services:
22
lambkin_dev:
3-
build: .
3+
build:
4+
context: ../../..
5+
dockerfile: examples/beluga/docker/Dockerfile
46
image: lambkin_ros:jazzy
57
container_name: lambkin_developer
68
network_mode: "host"
7-
89
stdin_open: true
910
tty: true
10-
11-
volumes:
12-
- ..:/ws
13-
- ${HOME}/ekumen/rosbags/reference_files:/rosbags/reference
14-
- ${HOME}/ekumen/rosbags/benchmarking_results:/benchmarking_results

0 commit comments

Comments
 (0)