agent404 commited on
Commit
3ec2885
1 Parent(s): 3157d62

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -2,11 +2,10 @@ FROM darthsim/imgproxy
2
 
3
  WORKDIR /code
4
 
5
- COPY ./requirements.txt /code/requirements.txt
6
-
7
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
  COPY . .
 
10
  RUN chmod +x MuseScore-4.1.1.232071203-x86_64.AppImage
11
  RUN mkdir -m 700 flagged
12
 
 
2
 
3
  WORKDIR /code
4
 
5
+ RUN apt update && apt install -y fuse libfuse2 fonts-dejavu python3-pip
 
 
6
 
7
  COPY . .
8
+ RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
9
  RUN chmod +x MuseScore-4.1.1.232071203-x86_64.AppImage
10
  RUN mkdir -m 700 flagged
11