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