-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |