mirror of
https://github.com/ethanrusz/echbot.git
synced 2025-04-04 08:13:19 -04:00
8 lines
93 B
Docker
8 lines
93 B
Docker
FROM rust:1.66.0
|
|
|
|
WORKDIR /usr/src/echbot
|
|
COPY . .
|
|
|
|
RUN cargo install --path .
|
|
|
|
CMD "echbot"
|