Skip to content

Commit dfed83d

Browse files
authored
Merge pull request #50 from scalableminds/interactive-client-improvements
Improve Interactive client
2 parents 8a16536 + 3f3fea8 commit dfed83d

File tree

11 files changed

+1865
-122
lines changed

11 files changed

+1865
-122
lines changed

client/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ fossildbapi_pb2_grpc.py
55
fossildbapi_pb2.py
66

77
env
8+
venv
9+
.venv
10+
11+
*.bin

client/.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.10

client/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM python:3.9
1+
FROM python:3.10
22

33
COPY src/main/protobuf /fossildb/src/main/protobuf
44
COPY client /fossildb/client
55

66
WORKDIR /fossildb/client
77

8-
RUN pip3 install -r requirements.txt
8+
RUN pip3 install argparse grpcio-tools grpcio-health-checking
99
RUN ./update_api.sh
1010

1111
ENTRYPOINT ["/fossildb/client/fossildb-client"]

0 commit comments

Comments
 (0)