Files
bpfire/tools/docker/Dockerfile
Michael Tremer 4fc73ace76 docker: Always agree to install all updates
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2018-11-30 20:16:08 +00:00

23 lines
385 B
Docker

# This image is based on the latest stable version of Debian
FROM debian:stable
# Install all updates
RUN apt-get update && apt-get dist-upgrade -y
# Install all packages needed for the build
RUN apt-get install -y \
build-essential \
autoconf \
automake \
bison \
flex \
gawk \
git \
libz-dev \
wget
# Enable colors in git
RUN git config --global color.ui auto
WORKDIR ~