Dockerfile: apt -> apt-get

Dockerfile commands should be using apt-get, not apt.
This commit is contained in:
Peter Kolbus 2019-06-29 11:09:01 -05:00
parent 49c2435a40
commit be54358fa7

View File

@ -28,8 +28,8 @@ ARG MAKEFLAGS_PARALLEL=""
ENV DEBIAN_FRONTEND noninteractive
RUN apt update \
&& apt -y install software-properties-common \
RUN apt-get update \
&& apt-get -y install software-properties-common \
&& rm -rf /var/lib/apt/lists
RUN add-apt-repository -y ppa:team-gcc-arm-embedded/ppa