1
0
mirror of https://github.com/chylex/Bark-Browser.git synced 2025-04-06 13:15:41 +02:00

Add Dockerfile for building the app

This commit is contained in:
chylex 2023-08-03 04:57:52 +02:00
parent a1e574215f
commit 2ccfb1c41a
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548
2 changed files with 13 additions and 0 deletions

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
.*
target

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM rust:1.71.0 as builder
WORKDIR /app
COPY . .
RUN cargo build --release
FROM scratch as exporter
COPY --from=builder /app/target/release/bark .
# docker build --output out .