Docker: move to ubuntu 20.04 and correct bash-completion support

This commit is contained in:
Pierre Kancir 2021-03-01 10:17:56 +01:00 committed by Peter Barker
parent b62c2d9518
commit e1d3494f8e

View File

@ -1,4 +1,4 @@
FROM ubuntu:18.04 FROM ubuntu:20.04
WORKDIR /ardupilot WORKDIR /ardupilot
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
@ -8,6 +8,7 @@ RUN useradd -U -m ardupilot && \
RUN apt-get update && apt-get install --no-install-recommends -y \ RUN apt-get update && apt-get install --no-install-recommends -y \
lsb-release \ lsb-release \
sudo \ sudo \
bash-completion \
software-properties-common software-properties-common
COPY Tools/environment_install/install-prereqs-ubuntu.sh /ardupilot/Tools/environment_install/ COPY Tools/environment_install/install-prereqs-ubuntu.sh /ardupilot/Tools/environment_install/