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 258B

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