ubuntu-16.04.dockerfile 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Start with 16.04
  2. FROM ubuntu:16.04
  3. # Add steps here to set up dependencies
  4. RUN apt-get update \
  5. && apt-get install -y \
  6. apache2-utils \
  7. autoconf \
  8. build-essential \
  9. gawk \
  10. gettext \
  11. git \
  12. libexpat1 \
  13. libexpat1-dev \
  14. libpcre3-dev \
  15. libxml2-dev \
  16. net-tools \
  17. python \
  18. python-crypto \
  19. python-protobuf \
  20. texinfo \
  21. wget \
  22. # Add the user UID:1001, GID:1001, home at /leeroy
  23. && groupadd -r leeroy -g 1001 \
  24. && useradd -u 1001 -r -g leeroy -m -d /leeroy -c "Leeroy Jenkins" leeroy \
  25. && chmod 755 /leeroy \
  26. # Make sure /leeroy can be written by leeroy
  27. && chown 1001 /leeroy \
  28. # Blow away any random state
  29. && rm -f /leeroy/.rnd \
  30. # Make a directory for the intel driver
  31. && mkdir -p /opt/intel && chown 1001 /opt/intel
  32. # Set the working directory to leeroy home directory
  33. WORKDIR /leeroy
  34. # Specify the user to execute all commands below
  35. USER leeroy
  36. # Set environment variables.
  37. ENV HOME /leeroy
  38. # Define default command.
  39. CMD ["bash"]