Creates Dockerfile

This commit is contained in:
2024-02-25 05:08:51 -03:00
parent 0801fd5f7c
commit 1c0a0ae82f

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM rust:1.76-buster
LABEL authors="hideyoshi"
COPY . .
RUN cargo build --release
ENTRYPOINT ["target/release/message-hideyoshi-com"]