Figuring out how to create global instance of IrisCore in Python3...

This commit is contained in:
James Barnsley
2019-12-24 13:52:50 +13:00
parent abb35c1536
commit 3b8ac8a3b8
6 changed files with 36 additions and 35 deletions

View File

@ -39,6 +39,9 @@ RUN wget -q -O - https://apt.mopidy.com/mopidy.gpg \
# Install additional Python dependencies
RUN python3.7 -m pip install --no-cache tox
# TEMPORARY: Install mopidy pre-release
RUN python3 -m pip install --user Mopidy==3.0.0b1
# Start helper script.
COPY docker/entrypoint.sh /entrypoint.sh
@ -56,7 +59,4 @@ ENV HOME=/var/lib/mopidy
EXPOSE 6600 6680
# Switch back to the circleci user
USER circleci
CMD ["/bin/sh"]