diff --git a/dockerfiles/fastapi/Dockerfile.cpu b/dockerfiles/fastapi/Dockerfile.cpu index d6a2ef4..950dc2a 100644 --- a/dockerfiles/fastapi/Dockerfile.cpu +++ b/dockerfiles/fastapi/Dockerfile.cpu @@ -15,4 +15,4 @@ RUN pip install --upgrade --no-cache-dir .[serve] -c constraints.cpu.txt \ EXPOSE 8000 -ENTRYPOINT ["relik serve"] +ENTRYPOINT ["scripts/docker/start-gunic.sh"] diff --git a/relik/version.py b/relik/version.py index 927938c..89be89a 100644 --- a/relik/version.py +++ b/relik/version.py @@ -4,7 +4,7 @@ _MINOR = "0" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "0" +_PATCH = "1" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = os.environ.get("RELIK_VERSION_SUFFIX", "")