We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fa68c0 commit a9da30aCopy full SHA for a9da30a
docs/docker.md
@@ -39,7 +39,6 @@ FROM ubuntu:20.04 #<1>
39
ENV DEBIAN_FRONTEND noninteractive
40
41
RUN apt-get update #<2>
42
-RUN apt-get -y upgrade
43
RUN apt-get install -y unzip graphviz curl musescore3 python3-pip
44
45
RUN pip install --upgrade pip #<3>
@@ -48,13 +47,13 @@ WORKDIR /app #<4>
48
47
49
COPY ./requirements.txt /app #<5>
50
RUN pip install -r /app/requirements.txt
+
51
# Hack to get around tensorflow-io issue - https://github.com/tensorflow/io/issues/1755
52
RUN pip install tensorflow-io
53
RUN pip uninstall -y tensorflow-io
54
55
COPY /notebooks/. /app/notebooks #<6>
56
COPY /scripts/. /app/scripts
57
-COPY /setup.cfg /app
58
59
ENV PYTHONPATH="${PYTHONPATH}:/app" #<7>
60
```
0 commit comments