mirror of
https://github.com/chylex/Bark-Browser.git
synced 2024-11-21 13:42:50 +01:00
10 lines
133 B
Docker
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/ .
|