tinyraytracer/.gitpod.yml
2019-01-22 07:24:00 +00:00

13 lines
206 B
YAML

image:
file: Dockerfile
tasks:
- command: >
mkdir --parents build &&
cd build &&
cmake .. &&
make &&
./tinyraytracer &&
pnmtopng out.ppm > out.png &&
open out.png &&
cd ..