Skip to content

Instantly share code, notes, and snippets.

@nowk
Created March 20, 2016 03:33
Show Gist options
  • Save nowk/6bac60f3a2792b2c1355 to your computer and use it in GitHub Desktop.
Save nowk/6bac60f3a2792b2c1355 to your computer and use it in GitHub Desktop.
FROM debian:jessie
MAINTAINER Yung Hwa Kwon <yung.kwon@damncarousel.com>
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