ubuntu-16.04.dockerfile 431 B

123456789101112131415161718192021222324252627
  1. # Start with 16.04
  2. FROM ubuntu:16.04
  3. # Add steps here to set up dependencies
  4. RUN apt-get update && apt-get install -y \
  5. apache2-utils \
  6. autoconf \
  7. build-essential \
  8. gawk \
  9. gettext \
  10. git \
  11. libpcre3-dev \
  12. libxml2-dev \
  13. net-tools \
  14. python \
  15. texinfo \
  16. wget
  17. # Set environment variables.
  18. ENV HOME /root
  19. # Define working directory.
  20. WORKDIR /root
  21. # Define default command.
  22. CMD ["bash"]