Ver código fonte

Merge branch 'release-0.0.9'

Arkadiusz Ryś 3 anos atrás
pai
commit
fdf41bca6a
2 arquivos alterados com 2 adições e 2 exclusões
  1. 1 1
      Dockerfile
  2. 1 1
      ontopoint/__init__.py

+ 1 - 1
Dockerfile

@@ -9,6 +9,6 @@ WORKDIR ${APP_HOME}
 #  libpq-dev \
 #  && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
 #  && rm -rf /var/lib/apt/lists/*
-RUN pip install requirements.txt
+RUN pip install -r requirements.txt
 ENTRYPOINT ["python3 -m ontopoint"]
 #CMD ["/start.sh"]

+ 1 - 1
ontopoint/__init__.py

@@ -1,3 +1,3 @@
 """Ontology server."""
-__version__ = "0.0.8"
+__version__ = "0.0.9"
 __version_info__ = tuple((int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")))