-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2721dc2
commit 9aecda7
Showing
2 changed files
with
24 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1 @@ | ||
FROM ros:humble | ||
|
||
RUN apt update | ||
RUN apt-get update --fix-missing | ||
RUN apt-get install -y python3-pip | ||
RUN apt-get install -y ffmpeg libsm6 libxext6 | ||
# RUN apt install -y curl | ||
# RUN apt-get install -y wget | ||
|
||
# RUN git clone --recursive https://github.com/PX4/PX4-Autopilot.git /home/ws/PX4-Autopilot | ||
# RUN curl -sSL http://get.gazebosim.org | sh | ||
|
||
# WORKDIR "/home/ws/PX4-Autopilot" | ||
# RUN Tools/setup/ubuntu.sh | ||
# RUN make px4_sitl | ||
WORKDIR "/home/ws/uavf_2024" | ||
COPY setup.py setup.py | ||
RUN pip install -e . | ||
|
||
CMD ["/bin/bash"] | ||
FROM epedley/uavf_2024-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM ros:humble | ||
|
||
RUN apt update | ||
RUN apt-get update --fix-missing | ||
RUN apt-get install -y python3-pip | ||
RUN apt-get install -y ffmpeg libsm6 libxext6 | ||
# RUN apt install -y curl | ||
# RUN apt-get install -y wget | ||
|
||
# RUN git clone --recursive https://github.com/PX4/PX4-Autopilot.git /home/ws/PX4-Autopilot | ||
# RUN curl -sSL http://get.gazebosim.org | sh | ||
|
||
# WORKDIR "/home/ws/PX4-Autopilot" | ||
# RUN Tools/setup/ubuntu.sh | ||
# RUN make px4_sitl | ||
WORKDIR "/home/ws/uavf_2024" | ||
COPY setup.py setup.py | ||
RUN pip install -e . | ||
|
||
CMD ["/bin/bash"] | ||
|
||
|
||
# docker build -t epedley/uavf_2024-dev . |