Docker: add Dockerfile for Docker container support

This commit is contained in:
Adam Watkins 2017-11-17 13:29:47 -05:00 committed by Peter Barker
parent a9621191d8
commit 2fe3535fd8
2 changed files with 25 additions and 1 deletions

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM ubuntu:16.04
WORKDIR /ardupilot
RUN useradd -U -d /ardupilot ardupilot && \
usermod -G users ardupilot
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install --no-install-recommends -y \
lsb-release \
sudo \
software-properties-common \
python-software-properties && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENV USER=ardupilot
ADD . /ardupilot
RUN chown -R ardupilot:ardupilot /ardupilot && \
bash -c "Tools/scripts/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/*
USER ardupilot
ENV CCACHE_MAXSIZE=1G
ENV PATH /usr/lib/ccache:/ardupilot/Tools:${PATH}

View File

@ -76,7 +76,9 @@ fi
sudo usermod -a -G dialout $USER sudo usermod -a -G dialout $USER
$APT_GET remove modemmanager if dpkg-query -l "modemmanager"; then
$APT_GET remove modemmanager
fi
$APT_GET update $APT_GET update
if apt-cache search python-wxgtk3.0 | grep wx; then if apt-cache search python-wxgtk3.0 | grep wx; then