aboutsummaryrefslogtreecommitdiff
path: root/mutt/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'mutt/Dockerfile')
-rw-r--r--mutt/Dockerfile16
1 files changed, 0 insertions, 16 deletions
diff --git a/mutt/Dockerfile b/mutt/Dockerfile
deleted file mode 100644
index 214a770..0000000
--- a/mutt/Dockerfile
+++ /dev/null
@@ -1,16 +0,0 @@
1FROM alpine:edge
2
3RUN \
4 echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories; \
5 apk --no-cache add \
6 su-exec \
7 neomutt \
8 elinks \
9 vim \
10 feh \
11 perl-data-ical \
12 perl-text-autoformat;
13
14ADD entrypoint.sh /
15ENTRYPOINT [ "/entrypoint.sh" ]
16CMD ["neomutt", "-F", "/home/mutt/.mutt/muttrc"]