gpt4 book ai didi

python - 将 watchman 安装到 Python docker 容器中时出错

转载 作者:行者123 更新时间:2023-12-01 23:29:34 28 4
gpt4 key购买 nike

如何将 watchman 安装到我的 python docker 容器中?我已经尝试按照 watchman documentation 中的描述从源代码安装它但没有运气。这是我的 Dockerfile:

FROM python:3.9

# install watchman
RUN git clone https://github.com/facebook/watchman.git -b v4.9.0 --depth 1 && \
cd watchman && \
./autogen.sh && \
./configure && \
make && \
make install

这是我尝试构建图像时的错误:

$ docker image build --tag pythonwatchman .
...
#5 141.5 CXX root/watchman-warnerr.o
#5 143.0 CXX root/watchman-watchlist.o
#5 144.9 CXX scm/watchman-Mercurial.o
#5 145.6 scm/Mercurial.cpp: In constructor ‘watchman::Mercurial::infoCache::infoCache(std::__cxx11::string)’:
#5 145.6 scm/Mercurial.cpp:16:40: error: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct watchman::FileInformation’; use assignment or value-initialization instead [-Werror=class-memaccess]
#5 145.6 memset(&dirstate, 0, sizeof(dirstate));
#5 145.6 ^
#5 145.6 In file included from scm/Mercurial.h:10,
#5 145.6 from scm/Mercurial.cpp:3:
#5 145.6 ./FileInformation.h:18:8: note: ‘struct watchman::FileInformation’ declared here
#5 145.6 struct FileInformation {
#5 145.6 ^~~~~~~~~~~~~~~
#5 146.8 cc1plus: all warnings being treated as errors
#5 146.8 make[1]: *** [Makefile:4446: scm/watchman-Mercurial.o] Error 1
#5 146.8 make[1]: Leaving directory '/watchman'
#5 146.8 make: *** [Makefile:1264: all] Error 2

有什么办法可以解决这个问题吗?或者有没有更好的方法将 watchman 安装到这个容器中?

最佳答案

Or is there a better way to install watchman into this container?

是的,您可以直接将他们预编译的二进制文件安装到容器中,无需从源代码构建,参见this .

接下来是一个完整的解决方案,仅供引用。

Docker 文件:

FROM python:3.9

ARG WM_VERSION=v2021.03.01.00

# install watchman
RUN wget https://github.com/facebook/watchman/releases/download/$WM_VERSION/watchman-$WM_VERSION-linux.zip && \
unzip watchman-$WM_VERSION-linux.zip && \
cd watchman-$WM_VERSION-linux && \
mkdir -p /usr/local/{bin,lib} /usr/local/var/run/watchman && \
cp bin/* /usr/local/bin && \
cp lib/* /usr/local/lib && \
chmod 755 /usr/local/bin/watchman && \
chmod 2777 /usr/local/var/run/watchman && \
cd .. && \
rm -fr watchman-$WM_VERSION-linux.zip watchman-$WM_VERSION-linux

验证:

$ docker build -t abc:1 .
$ docker run --rm -it abc:1 watchman --version
20210222.215625.0

你可以看到我们现在已经可以运行 watchman 命令了。

顺便说一句,所有预定义的二进制文件都可以在 github 中找到.

关于python - 将 watchman 安装到 Python docker 容器中时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66513668/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com