File: run.bash

package info (click to toggle)
trimesh 4.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 33,416 kB
  • sloc: python: 35,596; makefile: 96; javascript: 85; sh: 38
file content (9 lines) | stat: -rw-r--r-- 239 bytes parent folder | download
1
2
3
4
5
6
7
8
9
set -xe

# in this directory build the image with a tag
docker build . -t renderworker

# run the container we just built
# the -v will mount the current directory
# as /output inside the container
docker run -v `pwd`:/output renderworker