加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 3.88 KB
一键复制 编辑 原始数据 按行查看 历史
FROM debian:buster
LABEL maintainer="Huan LI (李卓桓) <zixia@zixia.net>"
ENV DEBIAN_FRONTEND noninteractive
ENV WECHATY_DOCKER 1
ENV LC_ALL C.UTF-8
ENV NODE_ENV $NODE_ENV
ENV NPM_CONFIG_LOGLEVEL warn
# Installing the 'apt-utils' package gets rid of the 'debconf: delaying package configuration, since apt-utils is not installed'
# error message when installing any other package with the apt-get package manager.
# https://peteris.rocks/blog/quiet-and-unattended-installation-with-apt-get/
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
apt-utils \
autoconf \
automake \
bash \
build-essential \
ca-certificates \
curl \
coreutils \
ffmpeg \
figlet \
git \
gnupg2 \
jq \
libgconf-2-4 \
libtool \
moreutils \
python-dev \
shellcheck \
sudo \
tzdata \
vim \
wget \
libxtst6 \
&& apt-get purge --auto-remove \
&& rm -rf /tmp/* /var/lib/apt/lists/*
RUN curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - \
&& apt-get update && apt-get install -y --no-install-recommends nodejs \
&& apt-get purge --auto-remove \
&& rm -rf /tmp/* /var/lib/apt/lists/*
# https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md
# https://github.com/ebidel/try-puppeteer/blob/master/backend/Dockerfile
# Install latest chrome dev package.
# Note: this also installs the necessary libs so we don't need the previous RUN command.
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
google-chrome-unstable \
&& apt-get purge --auto-remove \
&& rm -rf /tmp/* /var/lib/apt/lists/* \
&& rm -rf /usr/bin/google-chrome* /opt/google/chrome-unstable
WORKDIR /wechaty
COPY package.json .
RUN npm install \
&& rm -fr /tmp/* ~/.npm
COPY . .
RUN ./scripts/generate-version.sh && rm -f src/version.spec.ts
RUN npm test \
&& npm run dist \
&& npm link
# Pre-install all puppets.
# Must be placed after `npm link`, or it will be all deleted by `npm link`
RUN npm run puppet-install \
&& sudo rm -fr /tmp/* ~/.npm
# Loading from node_modules Folders: https://nodejs.org/api/modules.html
# If it is not found there, then it moves to the parent directory, and so on, until the root of the file system is reached.
RUN mkdir /node_modules \
&& ln -sfv /usr/local/lib/node_modules/* /node_modules/ \
&& ln -sfv /usr/lib/node_modules/* /node_modules/ \
&& ln -sfv /wechaty/node_modules/* /node_modules/ \
&& ln -sfv /wechaty/tsconfig.json / \
&& echo 'Linked Wechaty to Global'
WORKDIR /bot
ENTRYPOINT [ "/wechaty/bin/entrypoint.sh" ]
CMD [ "" ]
#
# https://docs.docker.com/docker-cloud/builds/advanced/
# http://label-schema.org/rc1/
#
LABEL \
org.label-schema.license="Apache-2.0" \
org.label-schema.build-date="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" \
org.label-schema.version="$DOCKER_TAG" \
org.label-schema.schema-version="$(wechaty-version)" \
org.label-schema.name="Wechaty" \
org.label-schema.description="Wechat for Bot" \
org.label-schema.usage="https://github.com/wechaty/wechaty/wiki/Docker" \
org.label-schema.url="https://www.chatie.io" \
org.label-schema.vendor="Chatie" \
org.label-schema.vcs-ref="$SOURCE_COMMIT" \
org.label-schema.vcs-url="https://github.com/wechaty/wechaty" \
org.label-schema.docker.cmd="docker run -ti --rm wechaty/wechaty <code.js>" \
org.label-schema.docker.cmd.test="docker run -ti --rm wechaty/wechaty test" \
org.label-schema.docker.cmd.help="docker run -ti --rm wechaty/wechaty help" \
org.label-schema.docker.params="WECHATY_TOKEN=token token from https://www.chatie.io, WECHATY_LOG=verbose Set Verbose Log, TZ='Asia/Shanghai' TimeZone"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化