tillrohrmann commented on a change in pull request #14305:
URL: https://github.com/apache/flink/pull/14305#discussion_r537661317
##########
File path: docs/deployment/resource-providers/standalone/docker.zh.md
##########
@@ -491,6 +491,27 @@ services:
parallelism.default: 2
```
+### Enabling Python
+
+To build a custom image which has Python and Pyflink prepared, you can refer
to the following Dockerfile:
+{% highlight Dockerfile %}
+FROM flink
+
+# install python3 and pip3
+RUN apt-get update -y && \
+apt-get install -y python3.7 python3-pip python3.7-dev && rm -rf
/var/lib/apt/lists/*
Review comment:
I would leave this untouched since I only want to preserve the current
information.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]