Thanks I’ll give a try
De : [email protected] <[email protected]> Envoyé : jeudi 6 février 2020 15:24 À : Farouk <[email protected]> Cc : user <[email protected]> Objet : Re: Flink 1.10 feedback Hi Farouk, Currently, the community does not provide the image on docker hub for un-released version. I think you could using the following steps to build your image and then push to your docker repository. 1. Download the flink dist for 1.10, e.g. flink-1.10.0-rc2[1] 2. Unzip and cd flink-1.10 directory 3. Create the dockerfile, the content is described as follow 4. docker build . -t flink:1.10-rc2 5. docker push [1]. https://dist.apache.org/repos/dist/dev/flink/flink-1.10.0-rc2/ [2]. Dockerfile content FROM flink:latest RUN rm -rf /opt/flink/ COPY flink-1.10 /opt/flink Best, Yang Farouk <[email protected]<mailto:[email protected]>> 于2020年2月6日周四 下午5:58写道: Hi guys Is there an easy way to test in advance Flink 1.10 with docker images before releasing 1.10 ? We can may be give you a feedback. We have tests running with TestContainers. Thanks Farouk
