9 lines
No EOL
131 B
Docker
9 lines
No EOL
131 B
Docker
FROM rust:slim
|
|
|
|
WORKDIR /usr/src/refractr
|
|
COPY . .
|
|
|
|
RUN cargo build --release
|
|
RUN cargo install --locked --path .
|
|
|
|
CMD ["refractr"] |