Skip to content

Commit a9da30a

Browse files
committed
docker readme
1 parent 0fa68c0 commit a9da30a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/docker.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ FROM ubuntu:20.04 #<1>
3939
ENV DEBIAN_FRONTEND noninteractive
4040
4141
RUN apt-get update #<2>
42-
RUN apt-get -y upgrade
4342
RUN apt-get install -y unzip graphviz curl musescore3 python3-pip
4443
4544
RUN pip install --upgrade pip #<3>
@@ -48,13 +47,13 @@ WORKDIR /app #<4>
4847
4948
COPY ./requirements.txt /app #<5>
5049
RUN pip install -r /app/requirements.txt
50+
5151
# Hack to get around tensorflow-io issue - https://github.com/tensorflow/io/issues/1755
5252
RUN pip install tensorflow-io
5353
RUN pip uninstall -y tensorflow-io
5454
5555
COPY /notebooks/. /app/notebooks #<6>
5656
COPY /scripts/. /app/scripts
57-
COPY /setup.cfg /app
5857
5958
ENV PYTHONPATH="${PYTHONPATH}:/app" #<7>
6059
```

0 commit comments

Comments
 (0)