Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
FROM python:3.9
|
2 |
|
|
|
3 |
WORKDIR /code
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
@@ -7,6 +8,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
RUN apt update
|
9 |
RUN apt install fuse libfuse2
|
|
|
10 |
|
11 |
COPY . .
|
12 |
RUN chmod +x MuseScore-4.1.1.232071203-x86_64.AppImage
|
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
+
ENV HOME=/home
|
4 |
WORKDIR /code
|
5 |
|
6 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
8 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
9 |
RUN apt update
|
10 |
RUN apt install fuse libfuse2
|
11 |
+
RUN apk add --no-cache --update ttf-dejavu fontconfig && rm -rf /var/cache/apk/*
|
12 |
|
13 |
COPY . .
|
14 |
RUN chmod +x MuseScore-4.1.1.232071203-x86_64.AppImage
|