Files
ContainerImage.FilestashEnt…/Dockerfile
Danny Bessems d7c29b1ae5
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
Add Dockerfile
2026-01-07 12:57:11 +00:00

12 lines
255 B
Docker

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