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