diff --git a/README b/README index 6af3649..75caebd 100644 --- a/README +++ b/README @@ -17,6 +17,12 @@ Then, run these commands. make check sudo make install +You can build the Tkrzw-python docker image with the following command after building the Tkrzw image. + +``` +$ docker build -t tkrzw-python . +``` + See https://dbmx.net/tkrzw/api-python/ for details of the API. Thanks. diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..39915da --- /dev/null +++ b/dockerfile @@ -0,0 +1,6 @@ +FROM tkrzw + +WORKDIR /usr/local/workspace/tkrzw-python +ADD ./ /usr/local/workspace/tkrzw-python/ + +RUN apt-get update && apt-get -y install python3-pip python3-dev python3-setuptools && pip3 install regex --break-system-packages && make && make install