Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
M0Rf30 committed May 3, 2020
2 parents 74a9875 + f9ea024 commit e4c150d
Show file tree
Hide file tree
Showing 3 changed files with 288 additions and 260 deletions.
13 changes: 7 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM python:3
FROM python:3.8

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY . /usr/src/app
RUN pip install --no-cache-dir -r requirements.txt

RUN mkdir -p /usr/bin
COPY GMusicProxy /usr/bin/GMusicProxy
COPY requirements.txt /tmp/
RUN pip install --no-cache-dir -r /tmp/requirements.txt
RUN rm /tmp/requirements.txt
VOLUME ["/root/.local/share/gmusicapi/"]
EXPOSE 9999/tcp
ENTRYPOINT ["GMusicProxy"]
Loading

0 comments on commit e4c150d

Please sign in to comment.