cleanup dockerfile

pull/170/head
Gabriel Plassard 2016-06-26 16:05:14 +02:00
parent f0fc2a85f1
commit 2308065004
1 changed files with 3 additions and 3 deletions

View File

@ -3,10 +3,10 @@ FROM alpine:3.3
ENV GOPATH=/
RUN echo "http://dl-cdn.alpinelinux.org/alpine/v3.3/community" >> /etc/apk/repositories
RUN apk add --update ca-certificates go ffmpeg mercurial make opus-dev openal-soft-dev git build-base python
RUN apk add --update ca-certificates go ffmpeg make build-base opus-dev python
RUN apk upgrade
RUN wget http://yt-dl.org/downloads/latest/youtube-dl -O /bin/youtube-dl && chmod a+x /bin/youtube-dl
RUN wget https://yt-dl.org/downloads/latest/youtube-dl -O /bin/youtube-dl && chmod a+x /bin/youtube-dl
COPY . /src/github.com/matthieugrieger/mumbledj
COPY config.yaml /root/.config/mumbledj/config.yaml
@ -15,6 +15,6 @@ WORKDIR /src/github.com/matthieugrieger/mumbledj
RUN make
RUN make install
RUN apk del go mercurial git build-base make && rm -rf /var/cache/apk/*
RUN apk del go make build-base && rm -rf /var/cache/apk/*
ENTRYPOINT ["/usr/local/bin/mumbledj"]