-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create powerai-based dockerfile, powerai builds for x86/ppc #16
base: master
Are you sure you want to change the base?
Conversation
It looks like there's an actual functional error:
|
@splovyt If you have any insight on the imagio error, I'd appreciate it! I'll try upgrading Flask from 1.0.1 back to 1.1.1 (not a trivial change on the powerai image, but if it's required, we can make it work) to see if it makes any difference here. |
Hi @mattborgard, thanks for your PR! Would it be possible to specify the library versions in your requirements file? That way, we know for sure that we are on the same page there. Your current
Aligning this with the
Feel free to change the tensorflow version if you cannot set it to |
One of the issues with a powerai base is that most of the packages are pinned to very specific versions. Some of these can be updated to different versions, but this causes a downgrade to tensorflow which defeats the purpose of our conda install (this specific install through powerai's channel means we don't have to worry about license issues, etc). This package versions can likely be changed if necessary with the powerai team, but we will probably need to identify exactly where the issue lies. I can list what is currently installed in the image: pillow 6.1.0 |
RUN ["/bin/bash", "-c", "cd /opt/anaconda3/bin && source activate base && IBM_POWERAI_LICENSE_ACCEPT=yes ./accept-powerai-license.sh" ] | ||
|
||
COPY . /workspace | ||
RUN md5sum -c md5sums.txt # check file integrity |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RUN md5sum -c md5sums.txt # check file integrity | |
# check file integrity | |
RUN md5sum -c md5sums.txt |
https://docs.docker.com/engine/reference/builder/
Docker treats lines that begin with # as a comment, unless the line is a valid parser directive. A # marker anywhere else in a line is treated as an argument. This allows statements like:
No description provided.