ubuntu-16.04.dockerfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. python3-minimal \
  21. texinfo \
  22. wget \
  23. # Add the user UID:1001, GID:1001, home at /leeroy
  24. && groupadd -r leeroy -g 1001 \
  25. && useradd -u 1001 -r -g leeroy -m -d /leeroy -c "Leeroy Jenkins" leeroy \
  26. && chmod 755 /leeroy \
  27. # Make sure /leeroy can be written by leeroy
  28. && chown 1001 /leeroy \
  29. # Blow away any random state
  30. && rm -f /leeroy/.rnd \
  31. # Make a directory for the intel driver
  32. && mkdir -p /opt/intel && chown 1001 /opt/intel
  33. # Set the working directory to leeroy home directory
  34. WORKDIR /leeroy
  35. # Specify the user to execute all commands below
  36. USER leeroy
  37. # Set environment variables.
  38. ENV HOME /leeroy
  39. # Define default command.
  40. CMD ["bash"]