Files
SirBlob 2e01f69ded
CI / server (push) Successful in 33s
CI / frontend (push) Successful in 29s
CI / kiosk (push) Canceled after 9s
Build and Publish Docker Images / build-and-push (server/Dockerfile, pistation-server) (push) Canceled after 0s
Build and Publish Docker Images / build-and-push (apps/web-client/Dockerfile, pistation-web) (push) Canceled after 0s
Build only the kiosk deb in the release workflow
2026-08-10 15:34:37 -04:00

37 lines
835 B
Docker

FROM rust:1-bookworm AS build
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential \
file \
libayatana-appindicator3-dev \
libgtk-3-dev \
librsvg2-dev \
libssl-dev \
libwebkit2gtk-4.1-dev \
patchelf \
pkg-config \
unzip \
wget \
xdg-utils \
&& rm -rf /var/lib/apt/lists/*
ENV BUN_INSTALL=/usr/local
RUN curl -fsSL https://bun.sh/install | bash
WORKDIR /work
ENV NODE_ENV=development
COPY package.json ./
COPY packages packages
COPY apps/kiosk-client apps/kiosk-client
RUN bun install
WORKDIR /work/apps/kiosk-client
RUN bun run tauri build --bundles deb
FROM scratch AS bundle
COPY --from=build /work/apps/kiosk-client/src-tauri/target/release/bundle/deb /