"Fossies" - the Fresh Open Source Software Archive

Member "ipfire-2.x-2.27-core174/tools/docker/Dockerfile" (7 Apr 2023, 385 Bytes) of package /linux/misc/ipfire-2.x-2.27-core174.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 # This image is based on the latest stable version of Debian
    2 FROM debian:stable
    3 
    4 # Install all updates
    5 RUN apt-get update && apt-get dist-upgrade -y
    6 
    7 # Install all packages needed for the build
    8 RUN apt-get install -y \
    9 	build-essential \
   10 	autoconf \
   11 	automake \
   12 	bison \
   13 	flex \
   14 	gawk \
   15 	git \
   16 	libz-dev \
   17 	wget
   18 
   19 # Enable colors in git
   20 RUN git config --global color.ui auto
   21 
   22 WORKDIR ~