BookStack 运行环境镜像,安装了BookStack 的依赖。 Dockerfile如下:
FROM ubuntu:16.04
MAINTAINER "TruthHun <[email protected]>"
# 安装依赖
RUN apt update -y \
&& apt install -y locales \
&& rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 \
&& apt update -y \
&& apt install -y fonts-wqy-zenhei fonts-wqy-microhei \
&& apt install -y xdg-utils wget xz-utils python chromium-browser \
&& wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sh /dev/stdin
ENV LANG en_US.utf8
Content type
Image
Digest
Size
420.8 MB
Last updated
almost 8 years ago
docker pull truthhun/bookstack:env