Add Dockerfile
Some checks failed
build-image / Parse tag from upstream metadata (push) Successful in 2s
build-image / Container image (push) Failing after 16s
build-image / Semantic Release (push) Has been skipped

This commit is contained in:
2026-01-07 12:57:11 +00:00
parent 00e82dba9f
commit d7c29b1ae5

12
Dockerfile Normal file
View File

@@ -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"]