You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
217 B
11 lines
217 B
3 years ago
|
# build from lib/
|
||
|
FROM rust:1.60 as chef
|
||
|
|
||
|
RUN rustup target add x86_64-unknown-linux-musl
|
||
|
RUN cargo install cargo-chef
|
||
|
|
||
|
COPY u_lib /lib/u_lib
|
||
|
COPY u_api_proc_macro /lib/u_api_proc_macro
|
||
|
COPY certs /certs
|
||
|
|
||
|
WORKDIR /app
|