aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: a3f159521aee361932869d5a2367e67427bc0dd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rustlang/rust:nightly-slim AS build

WORKDIR /src/whirl

COPY . .

RUN cargo build --release

FROM ubuntu:18.04

COPY --from=build /src/whirl/target/release/whirl /usr/local/bin/whirl

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