From 1fb2e979bd2a34f717f2b6048e5a97c62f4377f3 Mon Sep 17 00:00:00 2001 From: Vimukthi Randika Senarath Yapa <77375611+VimukthiRandika1997@users.noreply.github.com> Date: Sun, 21 Jan 2024 02:06:43 +0530 Subject: [PATCH] Fixed the error with musescore3 in Dockerfile.gpu (#1) `RUN add-apt-repository ppa:mscore-ubuntu/mscore3-stable` without this installation failed in Ubuntu 20.04.6 LTS. --- docker/Dockerfile.gpu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile.gpu b/docker/Dockerfile.gpu index 93d421f..dc34bbd 100644 --- a/docker/Dockerfile.gpu +++ b/docker/Dockerfile.gpu @@ -3,6 +3,7 @@ FROM tensorflow/tensorflow:2.10.1-gpu RUN rm /etc/apt/sources.list.d/cuda.list RUN apt-get update +RUN add-apt-repository ppa:mscore-ubuntu/mscore3-stable RUN apt-get install -y unzip graphviz curl musescore3 RUN pip install --upgrade pip @@ -19,4 +20,4 @@ RUN pip uninstall -y tensorflow-io COPY /notebooks/. /app/notebooks COPY /scripts/. /app/scripts -ENV PYTHONPATH="${PYTHONPATH}:/app" \ No newline at end of file +ENV PYTHONPATH="${PYTHONPATH}:/app"