initial commit

This commit is contained in:
vimwitch
2024-10-08 13:51:06 -07:00
commit 5b783cfb54
3 changed files with 20 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
.DS_Store
*.swp
*.tmp

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM rust:1-slim-bookworm as builder
MAINTAINER chancehudson
RUN apt update && apt install -y git build-essential
RUN git clone https://github.com/freedit-org/freedit.git /tmp/freedit
WORKDIR /tmp/freedit
RUN cargo build -r
FROM rust:1-slim-bookworm
COPY --from=builder /tmp/freedit/target/release/freedit /usr/local/bin/freedit

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
# freedit-docker
Freedit inside Debian Bookworm.