add dateparser dependency

This commit is contained in:
Wolfgang Hottgenroth 2021-01-24 16:55:59 +01:00
parent b64ea9ad7b
commit 88e08029ec
Signed by: wn
GPG Key ID: E49AF3B9EF6DD469
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@ RUN \
apt update && \
apt install -y libmariadbclient-dev && \
pip3 install mariadb && \
pip3 install dateparser && \
pip3 install connexion && \
pip3 install connexion[swagger-ui] && \
pip3 install uwsgi && \

View File

@ -1,7 +1,7 @@
#!/bin/bash
IMAGE_NAME="registry.hottis.de/hv/hv-service"
VERSION=0.0.1
VERSION=0.0.3
docker build -t ${IMAGE_NAME}:${VERSION} .
docker push ${IMAGE_NAME}:${VERSION}