Last active
January 4, 2019 19:09
-
-
Save tonyreina/1a3c1613ef411597adf20d265edb5392 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
FROM intelaipg/openvino-model-server | |
# Create this working directory in container | |
# All commands after this are relative to WORKDIR | |
WORKDIR /usr/openvino | |
# Copy everything from local machine directory into container | |
COPY . . | |
# Install h5py within container | |
RUN pip install h5py | |
# Run this python script on container run | |
CMD ["python", "inference_openvino.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment