Skip to content

Instantly share code, notes, and snippets.

View emckean's full-sized avatar
💭
have I told you about Wordnik?

Erin McKean emckean

💭
have I told you about Wordnik?
View GitHub Profile
# 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
# 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/).