You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 223B

1234567891011
  1. FROM ubuntu:trusty
  2. RUN apt-get update
  3. RUN apt-get -y install packaging-dev equivs
  4. RUN useradd -s /bin/bash -m deb
  5. RUN echo >> /etc/sudoers
  6. RUN echo "deb ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
  7. USER deb
  8. WORKDIR /home/deb