Skip to content

Commit

Permalink
Tools: install ardupilot deps as non-root in Dockerfix for ArduPilot#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jveitchmichaelis authored and peterbarker committed Nov 29, 2019
1 parent 46d0425 commit bcbcef5
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,22 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install --no-instal
lsb-release \
sudo \
software-properties-common \
python-software-properties && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
python-software-properties

ENV USER=ardupilot
ADD . /ardupilot
RUN chown -R ardupilot:ardupilot /ardupilot && \
bash -c "Tools/environment_install/install-prereqs-ubuntu.sh -y && apt-get install gcc-arm-none-eabi -y" && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN echo "ardupilot ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/ardupilot
RUN chmod 0440 /etc/sudoers.d/ardupilot

RUN chown -R ardupilot:ardupilot /ardupilot

USER ardupilot
RUN bash -c "Tools/environment_install/install-prereqs-ubuntu.sh -y"
RUN sudo apt-get clean \
&& sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

ENV CCACHE_MAXSIZE=1G
ENV PATH /usr/lib/ccache:/ardupilot/Tools:${PATH}
ENV PATH /ardupilot/Tools/autotest:${PATH}
ENV PATH /ardupilot/.local/bin:$PATH

0 comments on commit bcbcef5

Please sign in to comment.