squalou commented on issue #11250:
URL:
https://github.com/apache/incubator-superset/issues/11250#issuecomment-732925078
For those maybe intereted, I came up with a workaround.
Using amancevice superset docker image tag 0.37.2 as a base image, I patched
the file
`/usr/local/lib/python3.6/site-packages/superset/templates/superset/basic.html`
like this :
before :
```html
<html>
<head>
<title>
{% block title %}
{% if title %}
```
after :
```html
<html>
<head>
<style>
@font-face{font-family:'Glyphicons
Halflings';src:url('/static/assets/be810be3a3e14c682a257d6eff341fe4.woff2')
format('woff');
}
</style>
<title>
{% block title %}
{% if title %}
```
Note that `be810be3a3e14c682a257d6eff341fe4` depends on the build, so you'd
better check the file exists. Else look for a 18kb woff2 file in
`/usr/local/lib/python3.6/site-packages/superset/static/assets`, it should be
it.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]