mirror of
https://github.com/ethanrusz/echbot.git
synced 2024-11-21 03:37:47 -05:00
9 lines
93 B
Docker
9 lines
93 B
Docker
FROM rust:1.66.0
|
|
|
|
WORKDIR /usr/src/echbot
|
|
COPY . .
|
|
|
|
RUN cargo install --path .
|
|
|
|
CMD "echbot"
|