gitpod test in a branch

homework_assignment
Dmitry V. Sokolov 2019-01-25 17:33:30 +01:00
parent d7e1447ee1
commit 543d079eb3
2 changed files with 18 additions and 0 deletions

12
.gitpod.yml Normal file
View 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
View File

@ -0,0 +1,6 @@
FROM gitpod/workspace-full
USER root
# add your tools here
RUN apt-get update && apt-get install -y \
netpbm