We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bbd35e commit 5565f79Copy full SHA for 5565f79
3 files changed
Dockerfile
@@ -36,7 +36,7 @@ COPY --from=builder /svc /svc
36
WORKDIR /svc
37
38
RUN pip install --upgrade pip
39
-RUN pip install --no-index /svc/wheels/*.whl
+RUN pip install --no-index /svc/wheels/*.whl && mkdir /data && chown -R ${USERNAME}:${USERNAME} /data
40
41
USER ${USERNAME}
42
WORKDIR ${HOME_DIR}
sqlite_rx/__init__.py
@@ -1,4 +1,5 @@
1
-__version__ = "1.2.0"
+from sqlite_rx.version import __version__
2
+
3
__author__ = "Abhishek Singh"
4
__authoremail__ = "abhishek.singh20141@gmail.com"
5
sqlite_rx/cli/server.py
@@ -130,7 +130,7 @@ def handle_help(
130
)
131
@click.option(
132
"--curve-dir",
133
- "-d",
+ "-c",
134
type=click.Path(exists=True),
135
help="Curve Key directory",
136
default=None,
0 commit comments