This is an automated email from the ASF dual-hosted git repository. mbalassi pushed a commit to branch release-1.0 in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
commit 65ea03c744347448f2592877cc98d85c6ea36ef4 Author: James Busche <[email protected]> AuthorDate: Fri May 20 19:08:56 2022 -0700 [FLINK-27728] Always update debian on docker build Signed-off-by: James Busche <[email protected]> --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3ac289f..693beab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -74,6 +74,10 @@ RUN chown -R flink:flink $FLINK_HOME && \ chown flink:flink $FLINK_KUBERNETES_SHADED_JAR && \ chown flink:flink /docker-entrypoint.sh +# Updating Debian +RUN apt-get update +RUN apt-get upgrade -y + USER flink ENTRYPOINT ["/docker-entrypoint.sh"] CMD ["help"]
