You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ri...@apache.org on 2022/10/04 08:35:08 UTC

[phoenix-queryserver] branch master updated: PHOENIX-6801 Fix failing docker build because of missing files (#107)

This is an automated email from the ASF dual-hosted git repository.

richardantal pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix-queryserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 17fed6b  PHOENIX-6801 Fix failing docker build because of missing files (#107)
17fed6b is described below

commit 17fed6b71346e6809d30a4ff45551fd508e1171a
Author: richardantal <ri...@apache.org>
AuthorDate: Tue Oct 4 10:35:03 2022 +0200

    PHOENIX-6801 Fix failing docker build because of missing files (#107)
---
 python-phoenixdb/Dockerfile | 3 ++-
 python-phoenixdb/NEWS.rst   | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/python-phoenixdb/Dockerfile b/python-phoenixdb/Dockerfile
index 17eec6b..a6aea1c 100644
--- a/python-phoenixdb/Dockerfile
+++ b/python-phoenixdb/Dockerfile
@@ -26,7 +26,8 @@ RUN export RESOLVED_VERSIONS=`pyenv_resolve $BUILD_PYTHON_VERSIONS` \
     && pyenv global $RESOLVED_VERSIONS $EXTRA_RESOLVED_VERSIONS \
     && pyenv local --unset \
     && python -m pip install -U tox \
-	&& apt-get install -y krb5-user libkrb5-dev
+    && apt-get update \
+    && apt-get install -y krb5-user libkrb5-dev
 
 ENV PHOENIXDB_TEST_DB_URL=http://host.docker.internal:8765
 ENV PHOENIXDB_TEST_DB_TRUSTSTORE=
diff --git a/python-phoenixdb/NEWS.rst b/python-phoenixdb/NEWS.rst
index a2dba44..8315636 100644
--- a/python-phoenixdb/NEWS.rst
+++ b/python-phoenixdb/NEWS.rst
@@ -4,6 +4,7 @@ Changelog
 Version 1.2.1
 -------------
 - Defined authentication mechanism for SPNEGO explicitly (PHOENIX-6781)
+- Fixed failing docker build because of missing files (PHOENIX-6801)
 - Fixed flaky tests
 
 Version 1.2.0