mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
termboy
This commit is contained in:
parent
9f1d18eb51
commit
450bf1879b
37
termboy/Dockerfile
Normal file
37
termboy/Dockerfile
Normal 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"]
|
BIN
termboy/games/donkey-kong-lang.gb
Normal file
BIN
termboy/games/donkey-kong-lang.gb
Normal file
Binary file not shown.
BIN
termboy/games/mspacman.gb
Normal file
BIN
termboy/games/mspacman.gb
Normal file
Binary file not shown.
BIN
termboy/games/zelda.gb
Normal file
BIN
termboy/games/zelda.gb
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user