123456789101112131415161718192021222324252627 |
- # Start with 16.04
- FROM ubuntu:16.04
- # Add steps here to set up dependencies
- RUN apt-get update && apt-get install -y \
- apache2-utils \
- autoconf \
- build-essential \
- gawk \
- gettext \
- git \
- libpcre3-dev \
- libxml2-dev \
- net-tools \
- python \
- texinfo \
- wget
- # Set environment variables.
- ENV HOME /root
- # Define working directory.
- WORKDIR /root
- # Define default command.
- CMD ["bash"]
|