first commit
This commit is contained in:
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM rust:1.70 AS builder
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN cargo build --release
|
||||
|
||||
FROM debian:buster-slim
|
||||
WORKDIR /app
|
||||
COPY --from=builder /app/target/release/ts3-manager-rust /app/ts3-manager-rust
|
||||
CMD ["/app/ts3-manager-rust"]
|
Reference in New Issue
Block a user