This commit is contained in:
Jessica Frazelle 2015-04-09 22:07:40 -07:00
parent e10aa9e741
commit 05f347a3d2
4 changed files with 37 additions and 0 deletions

37
termboy/Dockerfile Normal file
View File

@ -0,0 +1,37 @@
# VERSION: 0.1
# DESCRIPTION: Termboy in a container
# AUTHOR: Jessica Frazelle <jess@docker.com>
# COMMENTS:
# This file describes how to build termboy
# in a container with all dependencies installed.
# Tested on Debian Jessie.
# USAGE:
# # Download termboy Dockerfile
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/termboy/Dockerfile
#
# # Build termboy image
# docker build -t termboy .
#
# docker run -it termboy
#
# Base docker image
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
ENV TERM linux
ENV HOME /root
ENV DEBIAN_FRONTEND noninteractive
COPY termboy-go /usr/bin/termboy-go
# Install dependencies
RUN apt-get update && apt-get install -y \
kbd && \
mkdir -p $HOME/.config/termboy
# add games
COPY games $HOME/games
# Autorun termboy
ENTRYPOINT ["/usr/bin/termboy-go"]

Binary file not shown.

BIN
termboy/games/mspacman.gb Normal file

Binary file not shown.

BIN
termboy/games/zelda.gb Normal file

Binary file not shown.