dcconway 0.1.1

An implementation of Conway's Game of Life
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM ekidd/rust-musl-builder:latest AS builder

# Add our source code & compile
COPY . .
RUN cargo build --release

# Now build our _real_ Docker container
FROM alpine:latest
COPY --from=builder \
    /home/rust/src/target/x86_64-unknown-linux-musl/release/conway \
    /usr/local/bin

CMD ["/usr/local/bin/conway"]