Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 6 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -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