12 lines
255 B
Docker
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"] |