mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-04-25 21:25:40 +02:00
also update other images to alpine
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
parent
112ba4b33f
commit
0691fba97f
@ -16,14 +16,15 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Base docker image
|
# Base docker image
|
||||||
FROM debian:jessie
|
FROM alpine:latest
|
||||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||||
|
|
||||||
# Install emacs
|
# Install emacs:
|
||||||
RUN apt-get update && apt-get install -y \
|
# Note: Eamcs is only in testing repo -> http://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
|
||||||
|
RUN apk update && apk add \
|
||||||
emacs \
|
emacs \
|
||||||
--no-install-recommends \
|
--update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
# Autorun dunnet
|
# Autorun dunnet
|
||||||
CMD ["/usr/bin/emacs", "-batch", "-l", "dunnet"]
|
CMD ["/usr/bin/emacs", "-batch", "-l", "dunnet"]
|
||||||
|
@ -16,14 +16,15 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Base docker image
|
# Base docker image
|
||||||
FROM debian:jessie
|
FROM alpine:latest
|
||||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||||
|
|
||||||
# Install emacs
|
# Install emacs:
|
||||||
RUN apt-get update && apt-get install -y \
|
# Note: Eamcs is only in testing repo -> http://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
|
||||||
|
RUN apk update && apk add \
|
||||||
emacs \
|
emacs \
|
||||||
--no-install-recommends \
|
--update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
# Autorun tetris
|
# Autorun tetris
|
||||||
CMD ["/usr/bin/emacs", "-f", "tetris"]
|
CMD ["/usr/bin/emacs", "-f", "tetris"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user