From d7c29b1ae5e075137c488d521526ea9597fd47b9 Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Wed, 7 Jan 2026 12:57:11 +0000 Subject: [PATCH] Add Dockerfile --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..42c8b73 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM ubuntu:latest + +RUN apt update && \ + apt install -y \ + curl \ + ffmpeg && \ + curl -L https://downloads.filestash.app/upload/enterprise.tar.gz | tar -xz && \ + chmod +x /app/filestash.bin + +EXPOSE 8334 + +ENTRYPOINT ["/app/filestash.bin"] \ No newline at end of file