This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use the official image as a parent image | |
FROM ubuntu:18.04 | |
# Run the commands | |
RUN apt-get update | |
RUN apt-get install sudo | |
RUN adduser --disabled-password --gecos '' docker | |
RUN adduser docker sudo | |
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers | |
USER docker | |
RUN sudo apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Comment to a new pull request. | |
pullRequestOpened: > | |
Thank you for raising your pull request. | |
By making this pull request, you agree your contribution is made under the [Developer Certificate of Origin](https://developercertificate.org/). |
OlderNewer