Merge branch 'apt-get' into 'master'

Use 'apt-get' for stable CLI interface

See merge request max/arm-build-image!2
This commit is contained in:
2020-05-03 00:54:34 +00:00

View File

@@ -2,9 +2,9 @@ FROM ubuntu:20.04
LABEL maintainer="Max Regan <mgregan2@gmail.com>"
LABEL description="Container with ARM embedded cross toolchain"
RUN apt update && \
apt upgrade -y && \
apt install -y \
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y \
# Development files
build-essential \
git \