echbot/Dockerfile

9 lines
93 B
Docker

FROM rust:1.66.0
WORKDIR /usr/src/echbot
COPY . .
RUN cargo install --path .
CMD "echbot"