Skip to content

Instantly share code, notes, and snippets.

@tonyreina
Last active January 4, 2019 19:09
Show Gist options
  • Save tonyreina/1a3c1613ef411597adf20d265edb5392 to your computer and use it in GitHub Desktop.
Save tonyreina/1a3c1613ef411597adf20d265edb5392 to your computer and use it in GitHub Desktop.
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