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
| # From dordoka/play-framework, updated. | |
| FROM ubuntu:14.04 | |
| MAINTAINER Augustus Huang <[email protected]> | |
| RUN groupadd play | |
| RUN useradd play -m -g play -s /bin/bash | |
| RUN passwd -d -u play | |
| RUN echo "play ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/play | |
| RUN chmod 0440 /etc/sudoers.d/play | |
| RUN mkdir /home/play/workspace |