Dockerfile 172 B

123456789
  1. FROM rust:1.60
  2. WORKDIR /usr/src/zombie
  3. COPY . .
  4. RUN cargo install --path .
  5. ENTRYPOINT ["/usr/src/zombie/target/release/zombie"]
  6. CMD ["examples/hello_world.bf"]