RQG7TDDDSHCXSNZGMUUFM62GGUO43G32FBLKOYJFPNODPBNBD5TQC
FROM rust
COPY . /brust
WORKDIR /brust
RUN cargo build --release
EXPOSE 8787
VOLUME /brust/config
CMD cargo run --release
# Brüst
My discord bot in rust
## Compiling
```
cargo build --release
```
## Running
```
cargo run --release
```
## Dockerize
```
docker build -t brust . # Here brust si the name of the docker image
docker run -p 8787:8787 -v -v $PWD/config:/brust/config --name brust brust
```