From 4239382c0e2b81035b207cd6cf6d94d4239a629a Mon Sep 17 00:00:00 2001 From: Nabeel Date: Wed, 6 Nov 2019 10:44:51 +1100 Subject: [PATCH] Dockerfile for v.6.1 --- README.md | 2 +- docker/Dockerfile v.6.1 | 14 ++++++++++++++ docs/README.md | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 docker/Dockerfile v.6.1 diff --git a/README.md b/README.md index e3f59fa..88b139e 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Version 6.0 with major new updates has been released. Get it [here](https://gith Deep Learning capabilities have been added through integration with Keras and Tensorflow. This offers powerful capabilities for sequence predictions and complex timeseries forecasting. -This release also includes the ability to use [Additional Regressors](https://facebook.github.io/prophet/docs/seasonality,_holiday_effects,_and_regressors.html#additional-regressors) with Prophet, allowing you to model more complex timeseries. +This release also includes the ability to use [Additional Regressors](docs/Prophet.md#additional-regressors) with Prophet, allowing you to model more complex timeseries. ## Table of Contents diff --git a/docker/Dockerfile v.6.1 b/docker/Dockerfile v.6.1 new file mode 100644 index 0000000..4e9308e --- /dev/null +++ b/docker/Dockerfile v.6.1 @@ -0,0 +1,14 @@ +# Use the previous version of qlik-py-tools as a parent image +FROM nabeeloz/qlik-py-tools:6.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 diff --git a/docs/README.md b/docs/README.md index ca45ea4..1e677de 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,7 +6,7 @@ Version 6.0 with major new updates has been released. Get it [here](https://gith Deep Learning capabilities have been added through integration with Keras and Tensorflow. This offers powerful capabilities for sequence predictions and complex timeseries forecasting. -This release also includes the ability to use [Additional Regressors](https://facebook.github.io/prophet/docs/seasonality,_holiday_effects,_and_regressors.html#additional-regressors) with Prophet, allowing you to model more complex timeseries. +This release also includes the ability to use [Additional Regressors](Prophet.md#additional-regressors) with Prophet, allowing you to model more complex timeseries. ## Table of Contents