blob: bcaeba37aeb7968539f9654f73e2db8a9bc790e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y \
sudo \
git \
cmake \
debhelper \
python-pip
RUN echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo
RUN chmod 0440 /etc/sudoers.d/open-sudo
|