-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (18 loc) · 714 Bytes
/
Dockerfile
File metadata and controls
21 lines (18 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# docker_mpd
FROM alpine:edge
LABEL version="2.3.3-r13"
LABEL maintainers="[John Sing Dao Siu](https://github.com/J-Siu)"
LABEL name="amule"
LABEL usage="https://github.com/J-Siu/docker_amule/blob/master/README.md"
LABEL description="Docker - amule"
COPY docker-compose.yml env start.sh /
RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories \
&& apk --no-cache add tzdata amule=2.3.3-r13 git \
&& mkdir -p /amule \
# Include AmuleWebUI-Reloaded
&& cd /usr/share/amule/webserver \
&& git clone https://github.com/MatteoRagni/AmuleWebUI-Reloaded \
&& rm -rf AmuleWebUI-Reloaded/.git AmuleWebUI-Reloaded/doc-images \
&& apk del git \
&& chmod +x /start.sh
CMD ["/start.sh"]