6 lines
67 B
Docker
6 lines
67 B
Docker
FROM rust:1.62.1-slim-buster as builder
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build
|