【发布时间】:2021-03-07 05:58:02
【问题描述】:
如何将 watchman 安装到我的 python docker 容器中?我已经尝试按照守望者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 安装到这个容器中?
【问题讨论】: