mirror of
https://github.com/ssloy/tinyraytracer.git
synced 2025-07-31 20:00:34 +02:00
gitpod test in a branch
This commit is contained in:
12
.gitpod.yml
Normal file
12
.gitpod.yml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
image:
|
||||||
|
file: Dockerfile
|
||||||
|
tasks:
|
||||||
|
- command: >
|
||||||
|
mkdir --parents build &&
|
||||||
|
cd build &&
|
||||||
|
cmake .. &&
|
||||||
|
make &&
|
||||||
|
./tinyraytracer &&
|
||||||
|
pnmtopng out.ppm > out.png &&
|
||||||
|
open out.png &&
|
||||||
|
cd ..
|
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
FROM gitpod/workspace-full
|
||||||
|
|
||||||
|
USER root
|
||||||
|
# add your tools here
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
netpbm
|
Reference in New Issue
Block a user