Compare commits

...

2 commits

Author SHA1 Message Date
asonix 7b188e2fa1 Bump version
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-12-22 14:57:55 -06:00
asonix 801747c7bc Set workdir to /mnt, add cargo toml fields 2022-12-22 14:57:42 -06:00
3 changed files with 7 additions and 4 deletions

2
Cargo.lock generated
View file

@ -793,7 +793,7 @@ dependencies = [
[[package]]
name = "warriors-names"
version = "0.2.1"
version = "0.2.2"
dependencies = [
"anyhow",
"rand",

View file

@ -1,8 +1,11 @@
[package]
name = "warriors-names"
version = "0.2.1"
description = "A bot that generates warriors cat names and posts them to mastodon"
version = "0.2.2"
authors = ["asonix <asonix@asonix.dog>"]
edition = "2018"
license = "AGPL-3.0"
repository = "https://git.asonix.dog/asonix/warriors-names"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -6,7 +6,7 @@ COPY warriors-names /usr/local/bin/warriors-names
USER app
EXPOSE 8080
EXPOSE 6669
VOLUME /mnt
WORKDIR /mnt
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/usr/local/bin/warriors-names"]