Skip to content

Commit

Permalink
added docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Aug 20, 2023
1 parent abb1b28 commit 4747cc2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions docker/1.5
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM ros:noetic

RUN echo "build"

# fixes prompts during apt installations
RUN echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections
RUN apt-get -y update
RUN apt-get -y install -y sudo curl

RUN curl https://ctu-mrs.github.io/ppa-unstable/add_ppa.sh | bash
RUN apt-get -y install ros-noetic-mrs-uav-system

CMD ["bash"]
2 changes: 1 addition & 1 deletion docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ MY_PATH=`( cd "$MY_PATH" && pwd )`

cd $MY_PATH

docker build -f ./without_linux_setup -t ctumrs/mrs_uav_system:latest .
docker build -f ./1.5 -t ctumrs/mrs_uav_system:1.5 .

0 comments on commit 4747cc2

Please sign in to comment.