From 7ea9db7803197840940092a321321bfffc9fc740 Mon Sep 17 00:00:00 2001 From: drklee3 Date: Wed, 27 Jan 2021 23:15:20 -0800 Subject: [PATCH] build(sushii): Copy missing sushii-feeds and add rustfmt --- sushii-2/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sushii-2/Dockerfile b/sushii-2/Dockerfile index afdc965b..3be712e7 100644 --- a/sushii-2/Dockerfile +++ b/sushii-2/Dockerfile @@ -1,6 +1,8 @@ ## Compile sushii FROM rust:1.48 as build +RUN rustup component add rustfmt + # create a new empty shell project WORKDIR /usr/src/sushii RUN USER=root cargo new sushii-2 --bin @@ -11,6 +13,7 @@ COPY ./sushii-2/Cargo.toml ./sushii-2/Cargo.toml # copy local dependencies COPY ./sushii-model ./sushii-model +COPY ./sushii-feeds ./sushii-feeds # switch to sushii-2 workspace project to run following commands in sushii-2 dir WORKDIR /usr/src/sushii/sushii-2