Dockerfile
FROM node:10-slim
ENV TZ "Asia/Shanghai"
COPY ./sources.list /etc/apt/
# node-gyp require python
RUN set -ex \
&& apt-get update \
&& apt-get install -y make gcc g++ python \
&& rm -rf /var/lib/apt/lists/*
加速 sources.list
deb http://mirrors.tuna.tsinghua.edu.cn/debian/ stretch main contrib non-free
deb http://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-updates main contrib non-free
deb http://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-backports main contrib non-free
deb http://mirrors.tuna.tsinghua.edu.cn/debian-security stretch/updates main contrib non-free
Content type
Image
Digest
Size
104.9 MB
Last updated
almost 7 years ago
docker pull bysir/node-gyp:10-slim