Skip to content

Commit

Permalink
Put docker image on dockerhub (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
EricPedley authored Oct 10, 2023
1 parent 2721dc2 commit 9aecda7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 20 deletions.
21 changes: 1 addition & 20 deletions .devcontainer/Dockerfile
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
23 changes: 23 additions & 0 deletions Dockerfile
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 .

0 comments on commit 9aecda7

Please sign in to comment.