hermione 0.7.1

Competent magic for your config files and more
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:1.45 AS build

COPY Cargo.lock Cargo.lock
COPY Cargo.toml Cargo.toml
RUN cargo fetch

RUN cargo install cargo-make

COPY src src
RUN cargo build
COPY tests tests
COPY example-package example-package
COPY Makefile.toml Makefile.toml

RUN cargo make test