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:
parent
a1e574215f
commit
2ccfb1c41a
2
.dockerignore
Normal file
2
.dockerignore
Normal file
@ -0,0 +1,2 @@
|
||||
.*
|
||||
target
|
11
Dockerfile
Normal file
11
Dockerfile
Normal 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 .
|
Loading…
Reference in New Issue
Block a user