Add telegram mini app

This commit is contained in:
2025-03-08 01:32:36 +01:00
parent 148a583ce3
commit 53ec421839
22 changed files with 1226 additions and 247 deletions

View File

@@ -1,15 +1,30 @@
FROM rust:bullseye AS builder
FROM rust:bullseye AS builder_backend
WORKDIR /app
COPY . .
RUN cargo build --release --bin telegram-twitch-notifier
RUN cargo build --release --bin backend
FROM rust:bullseye AS builder_frontend
RUN rustup target add wasm32-unknown-unknown
RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
RUN cargo binstall trunk wasm-bindgen-cli
WORKDIR /app
COPY . .
WORKDIR /app/src/frontend
RUN trunk build --release
FROM debian:bullseye-slim
RUN apt-get update \
&& apt-get install -y openssl ca-certificates curl jq \
&& rm -rf /var/lib/apt/lists/*
@@ -18,6 +33,7 @@ RUN update-ca-certificates
WORKDIR /app
COPY --from=builder /app/target/release/telegram-twitch-notifier /usr/local/bin
COPY --from=builder_backend /app/target/release/backend /usr/local/bin
COPY --from=builder_frontend /app/src/frontend/dist /app/static
CMD ["/usr/local/bin/telegram-twitch-notifier"]
CMD ["/usr/local/bin/backend"]