1
0
mirror of https://github.com/chylex/Bark-Browser.git synced 2024-10-17 03:42:50 +02:00
Bark-Browser/Dockerfile
2023-08-05 03:44:55 +02:00

10 lines
133 B
Docker

FROM rust:1.71.0 as builder
WORKDIR /app
COPY . .
RUN ./scripts/build.sh
FROM scratch as exporter
COPY --from=builder /app/out/ .