Skip to content

Commit

Permalink
Updated docker container
Browse files Browse the repository at this point in the history
Updated docker container to include fix in release 4.3
  • Loading branch information
Nabeel committed Jun 12, 2019
1 parent c2e8803 commit 3300511
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docker/Dockerfile v.4.3
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Use the previous version of qlik-py-tools as a parent image
FROM nabeeloz/qlik-py-tools:4.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/

# Copy modified file for skater
COPY ./feature_importance.py /usr/local/lib/python3.6/site-packages/skater-1.1.2-py3.6.egg/skater/core/global_interpretation/

# Make port 80 available to the world outside this container
EXPOSE 80

# Run __main__.py when the container launches
CMD ["python", "__main__.py"]

0 comments on commit 3300511

Please sign in to comment.