We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f072a94 commit 865753aCopy full SHA for 865753a
.dockerignore
@@ -0,0 +1,13 @@
1
+.devcontainer/
2
+.git/
3
+.github/
4
+.venv/
5
+.vscode/
6
+lua/
7
+scripts/
8
+target/
9
+
10
+*.md
11
+.editorconfig
12
+.git-blame-ignore-revs
13
+.gitignore
Dockerfile
@@ -0,0 +1,10 @@
+FROM rust:1-alpine AS builder
+WORKDIR /app
+COPY . .
+RUN apk --update add cmake make musl-dev pkgconfig && \
+ cargo build --release
+FROM alpine:3 AS runtime
+COPY --from=builder /app/target/release/fancy-tree /usr/local/bin/fancy-tree
+ENTRYPOINT ["/usr/local/bin/fancy-tree"]
0 commit comments