From f99b0295c340046424ce84287207472183beee26 Mon Sep 17 00:00:00 2001 From: Felix <56034317+KrakenWagen@users.noreply.github.com> Date: Mon, 21 Jun 2021 17:35:30 +0200 Subject: [PATCH] Dockerfile fix There is a missing escape character on line 30. Docker build failed on my machine because of this. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2abf3eb1b1..c1df6d2455 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,9 +27,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y python3-setuptools && pip3 install catkin-tools RUN /bin/bash cd /home && git clone https://github.com/uzh-rpg/flightmare.git \ - && echo "export FLIGHTMARE_PATH=/home/flightmare" >> ~/.bashrc + && echo "export FLIGHTMARE_PATH=/home/flightmare" >> ~/.bashrc \ && source ~/.bashrc RUN /bin/bash cd /home/flightmare/flightlib && pip3 install . \ && cd /home/flightmare/flightrl && pip3 install . \ - && \ No newline at end of file + &&