forked from benoitvidis/docker-abcde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
30 lines (24 loc) · 838 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FROM debian:jessie
MAINTAINER Benoît Vidis
ENV EDITOR=vim
ENV TERM=xterm-color
RUN apt-get update && apt-get install -y locales && locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ADD https://www.deb-multimedia.org/pool/main/d/deb-multimedia-keyring/deb-multimedia-keyring_2015.6.1_all.deb /root/
RUN echo "deb http://www.deb-multimedia.org jessie main non-free" >> /etc/apt/sources.list && \
dpkg -i /root/deb-multimedia-keyring_2015.6.1_all.deb && \
apt-get update && \
apt-get install -y \
abcde \
eyed3 \
flac \
id3 \
nano \
lame \
vim && \
mkdir -p /abcde/out && \
echo "syntax on\nset expandtab ts=4 sw=4 autoindent encoding=utf8" >> etc/vim/vimrc
ADD abcde.conf /etc/abcde.conf
ENTRYPOINT [ "abcde" ]