Dockerfile and config.dbuild for building noise_explorer.

This commit is contained in:
Bill Thiede 2018-10-15 16:49:57 -07:00
parent ea0532fd6e
commit 815e647ad5
2 changed files with 9 additions and 0 deletions

8
rtiow/src/bin/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM rust:latest AS build-env
WORKDIR /src
RUN git clone https://git.z.xinu.tv/wathiede/raytracers.git
WORKDIR /src/raytracers/rtiow/
RUN cargo install --bin noise_explorer
FROM rust:slim
COPY --from=build-env /src/raytracers/rtiow/target/release/noise_explorer /usr/bin/noise_explorer

View File

@ -0,0 +1 @@
package="apps/rtiow"