Files

16 lines
412 B
Docker
Raw Permalink Normal View History

2026-01-07 23:55:49 +00:00
FROM ubuntu:latest AS builder
2026-01-07 12:57:11 +00:00
2026-01-08 00:05:55 +00:00
RUN apt-get update && \
apt-get install -y curl && \
2026-01-07 23:55:49 +00:00
curl -L https://downloads.filestash.app/upload/enterprise.tar.gz -o /tmp/enterprise.tar.gz && \
tar -xzf /tmp/enterprise.tar.gz --strip-components=1 -C /tmp
FROM ubuntu:latest
COPY --from=builder /tmp/filestash.bin /app/filestash.bin
RUN chmod +x /app/filestash.bin
2026-01-07 12:57:11 +00:00
EXPOSE 8334
ENTRYPOINT ["/app/filestash.bin"]