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