add simple dockerfile for development env (#58)

This commit is contained in:
Ola K 2019-07-27 08:10:00 +02:00 committed by jhspetersson
parent f7ae104198
commit a630d5c47f

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM rust:latest
WORKDIR /usr/src/fselect
COPY . .
RUN cargo install --path .
CMD ["cargo", "test", "--verbose", "--all"]