From 402cfe12ec1c00a29f37011fddd652b03843e7ca Mon Sep 17 00:00:00 2001 From: Nabeel Date: Thu, 26 Mar 2020 14:34:06 +1100 Subject: [PATCH] Dockerfile v.7.1 --- docker/Dockerfile v.7.1 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docker/Dockerfile v.7.1 diff --git a/docker/Dockerfile v.7.1 b/docker/Dockerfile v.7.1 new file mode 100644 index 0000000..afba5f0 --- /dev/null +++ b/docker/Dockerfile v.7.1 @@ -0,0 +1,14 @@ +# Use the previous version of qlik-py-tools as a parent image +FROM nabeeloz/qlik-py-tools:7.0 + +# Set the working directory to /qlik-py-tools/core +WORKDIR /qlik-py-tools/core + +# Copy all files from the core subdirectory into the container +COPY ./core/* /qlik-py-tools/core/ + +# Make ports 80 and 50055 available to the world outside this container +EXPOSE 80 50055 + +# Run __main__.py when the container launches +CMD ["python", "__main__.py"] \ No newline at end of file