Skip to content

Commit

Permalink
Dockerfile v.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nabeel committed Mar 26, 2020
1 parent 54f9c7b commit 402cfe1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docker/Dockerfile v.7.1
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: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"]

0 comments on commit 402cfe1

Please sign in to comment.