求一个 docker 版本,今天自己想用 docker 包起来,后续一直解决不了
以下是必须的步骤,后面的报错能力有限解决不了了
```Dockerfile
FROM debian
COPY wechat-beta_4.0.0.21_amd64.deb /root/
RUN sed -i 's/
deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list.d/debian.sources
RUN apt update
RUN apt -y install /root/wechat-beta_4.0.0.21_amd64.deb
RUN apt -y install libglib2.0-0 \
libatomic1 \
libxcomposite1 \
libxrender1 \
libxrandr2 \
libxkbcommon0 \
libxkbcommon-x11-0 \
libxcb-glx0 \
libxcb-randr0 \
libxcb-icccm4 \
libxcb-shm0 \
libxcb-render0 \
libxcb-image0 \
libxcb-xfixes0 \
libxcb-shape0 \
libxcb-sync1 \
libxcb-render-util0 \
libxcb-keysyms1 \
libx11-xcb1 \
libfontconfig1 \
libdbus-1-3 \
libnss3
RUN mkdir /root/.xwechat
```