diff --git a/Dockerfile b/Dockerfile index 64d226d57..83d3fd822 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,28 @@ -FROM node:14.16 as stage-build +FROM jumpserver/node:14.16 as stage-build ARG TARGETARCH + +ARG DEPENDENCIES=" \ + g++ \ + make \ + python3" + +ARG APT_MIRROR=http://mirrors.ustc.edu.cn +RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=lina \ + sed -i "s@http://.*.debian.org@${APT_MIRROR}@g" /etc/apt/sources.list \ + && rm -f /etc/apt/apt.conf.d/docker-clean \ + && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ + && apt-get update \ + && apt-get install -y --no-install-recommends ${DEPENDENCIES} \ + && echo "no" | dpkg-reconfigure dash \ + && rm -rf /var/lib/apt/lists/* + ARG NPM_REGISTRY="https://registry.npmmirror.com" - -WORKDIR /data - RUN set -ex \ && npm config set registry ${NPM_REGISTRY} \ && yarn config set registry ${NPM_REGISTRY} +WORKDIR /data + ADD package.json yarn.lock /data RUN --mount=type=cache,target=/usr/local/share/.cache/yarn,sharing=locked,id=lina \ yarn install