mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +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.
49 lines
1.1 KiB
Docker
49 lines
1.1 KiB
Docker
# Run Mutt from a container
|
|
|
|
# docker run -it \
|
|
# -v /etc/localtime:/etc/localtime:ro \
|
|
# -e GMAIL -e GMAIL_NAME \ # pass env variables to config
|
|
# -e GMAIL_PASS -e GMAIL_FROM \
|
|
# -v $HOME/.gnupg:/home/user/.gnupg \ # so you can encrypt ;)
|
|
# --name mutt \
|
|
# jess/mutt
|
|
#
|
|
FROM alpine:edge
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
RUN addgroup -g 1000 user \
|
|
&& adduser -D -h /home/user -G user -u 1000 user
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates \
|
|
elinks \
|
|
git \
|
|
gnupg1 \
|
|
lynx \
|
|
mutt \
|
|
mutt-doc \
|
|
vim
|
|
|
|
# a browser is necessary!
|
|
ENV BROWSER lynx
|
|
|
|
USER user
|
|
ENV HOME /home/user
|
|
ENV TERM xterm-256color
|
|
RUN mkdir -p $HOME/.mutt/cache/headers $HOME/.mutt/cache/bodies \
|
|
&& touch $HOME/.mutt/certificates
|
|
|
|
# vim settings
|
|
RUN git clone https://github.com/jfrazelle/.vim.git $HOME/.vim \
|
|
&& git clone https://github.com/altercation/vim-colors-solarized $HOME/.vim/bundle/vim-colors-solarized \
|
|
&& cp $HOME/.vim/vimrc $HOME/.vimrc
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
COPY .mutt $HOME/.mutt
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["mutt", "-F", "~/.mutt/muttrc"]
|