mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
7ac4881609
This enables us to remove the following patterns that required a `rm -rf /var/cache/apk`: - `apk update` - `apk add --update` - `apk add --update-cache` Supported since alpine 3.3.
30 lines
834 B
Docker
30 lines
834 B
Docker
# VERSION: 0.1
|
|
# DESCRIPTION: Run text-based emacs tetris in a container
|
|
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
|
# COMMENTS:
|
|
# This file describes how to build tetris in a container with all
|
|
# dependencies installed.
|
|
# Tested on Debian Jessie
|
|
# USAGE:
|
|
# # Download tetris Dockerfile
|
|
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/tetris/Dockerfile
|
|
#
|
|
# # Build tetris image
|
|
# docker build -t tetris .
|
|
#
|
|
# docker run -it tetris
|
|
#
|
|
|
|
# Base docker image
|
|
FROM alpine:latest
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
# Install emacs:
|
|
# Note: Emacs is only in testing repo -> http://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
|
|
RUN apk --no-cache add \
|
|
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
|
emacs
|
|
|
|
# Autorun tetris
|
|
CMD ["/usr/bin/emacs", "-f", "tetris"]
|