This commit is contained in:
2022-04-04 22:22:59 +02:00
commit 0a35246672
14 changed files with 1245 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM rust:slim-bullseye AS builder
COPY . /app/builder/
WORKDIR /app/builder/
RUN cargo build --release
FROM debian:bullseye-slim
COPY --from=builder /app/builder/target/release/ /app/
WORKDIR /app/
CMD ["./twatch"]