View Dockerfile
FROM python:3.6-stretch | |
RUN apt-get update \ | |
&& apt-get -y install autoconf automake autotools-dev g++ pkg-config libtool make unzip | |
RUN cd /tmp && \ | |
wget -O pyflame-master.zip https://github.com/uber/pyflame/archive/master.zip \ | |
&& unzip pyflame-master.zip \ | |
&& cd pyflame-master \ | |
&& ./autogen.sh \ |
View custom.css
@import url('https://fonts.googleapis.com/css?family=Merriweather'); | |
body { | |
color: #111; | |
} | |
.markdown-body { | |
padding: 0; | |
line-height: 1.5; | |
} |