Created
March 20, 2016 03:33
-
-
Save nowk/6bac60f3a2792b2c1355 to your computer and use it in GitHub Desktop.
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 debian:jessie | |
MAINTAINER Yung Hwa Kwon <[email protected]> | |
RUN apt-get update \ | |
&& apt-get install -y \ | |
gnuchess | |
# adduser to -u <ID> | |
# gnuchess cannot run as root | |
RUN adduser --disabled-password --uid 1000 --gecos '' gnuchess | |
ENTRYPOINT [ "/usr/games/gnuchess" ] | |
CMD [ "--version" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment