-
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.
- Loading branch information
Nabeel
committed
Jan 29, 2020
1 parent
6340942
commit 58cce20
Showing
3 changed files
with
20 additions
and
4 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
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
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,14 @@ | ||
# Use the previous version of qlik-py-tools as a parent image | ||
FROM nabeeloz/qlik-py-tools:6.3 | ||
|
||
# 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"] |