Browse Source

Dockerfile: use DEBIAN_FRONTEND=noninteractive as ARG ie just on build

zr-v5.1
Pierre Kancir 4 years ago committed by Peter Barker
parent
commit
f823848697
  1. 5
      Dockerfile

5
Dockerfile

@ -1,10 +1,11 @@ @@ -1,10 +1,11 @@
FROM ubuntu:18.04
WORKDIR /ardupilot
ARG DEBIAN_FRONTEND=noninteractive
RUN useradd -U -m ardupilot && \
usermod -G users ardupilot
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install --no-install-recommends -y \
RUN apt-get update && apt-get install --no-install-recommends -y \
lsb-release \
sudo \
software-properties-common
@ -35,7 +36,7 @@ RUN echo "if [ -d \"\$HOME/.local/bin\" ] ; then\nPATH=\"\$HOME/.local/bin:\$PAT @@ -35,7 +36,7 @@ RUN echo "if [ -d \"\$HOME/.local/bin\" ] ; then\nPATH=\"\$HOME/.local/bin:\$PAT
ENV BUILDLOGS=/tmp/buildlogs
# Cleanup
RUN DEBIAN_FRONTEND=noninteractive sudo apt-get clean \
RUN sudo apt-get clean \
&& sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENV CCACHE_MAXSIZE=1G

Loading…
Cancel
Save