Skip to content

Instantly share code, notes, and snippets.

@fristonio
Created July 3, 2018 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fristonio/2c74e5239ff0514613792b2de1fac614 to your computer and use it in GitHub Desktop.
Save fristonio/2c74e5239ff0514613792b2de1fac614 to your computer and use it in GitHub Desktop.
Sample dockerfile for origami wrapped model.
FROM teamcloudcv/origami:ub14.04-py3.5-cu8.0
COPY . /app
# For now this is enough, later we can also
# allow user to specify a setup.sh file wherein he can run custom
# commands for the demo.
RUN cd app && \
pip install -r requirements.txt
ENTRYPOINT ["python", "main.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment