File tree 3 files changed +13
-2
lines changed
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
- ## 0.15.10-dev4
1
+ ## 0.15.10
2
2
3
3
### Enhancements
4
4
Original file line number Diff line number Diff line change @@ -9,6 +9,17 @@ COPY unstructured unstructured
9
9
COPY test_unstructured test_unstructured
10
10
COPY example-docs example-docs
11
11
12
+ # NOTE(robinson) - temporary workaround to install mesa-gl 24.1.0 because
13
+ # libgallum is missing in mesa-gl 24.2.0 from the wolfi package manager
14
+ RUN wget "https://utic-public-cf.s3.amazonaws.com/mesa-gl-24.1.0-r0.718c913d.apk" && \
15
+ wget "https://utic-public-cf.s3.amazonaws.com/mesa-glapi-24.1.0-r0.4390a503.apk" && \
16
+ apk del mesa-gl && \
17
+ apk add --allow-untrusted mesa-gl-24.1.0-r0.718c913d.apk && \
18
+ apk add --allow-untrusted mesa-glapi-24.1.0-r0.4390a503.apk && \
19
+ rm mesa-gl-24.1.0-r0.718c913d.apk && \
20
+ rm mesa-glapi-24.1.0-r0.4390a503.apk
21
+
22
+
12
23
RUN chown -R notebook-user:notebook-user /app && \
13
24
apk add font-ubuntu git && \
14
25
fc-cache -fv && \
Original file line number Diff line number Diff line change 1
- __version__ = "0.15.10-dev4 " # pragma: no cover
1
+ __version__ = "0.15.10" # pragma: no cover
You can’t perform that action at this time.
0 commit comments