Files
ContainerImage.FilestashEnt…/Dockerfile
Danny Bessems bee0164802
All checks were successful
build-image / Parse tag from upstream metadata (push) Successful in 2s
build-image / Container image (push) Successful in 1m0s
Update Dockerfile
2026-01-07 23:55:49 +00:00

16 lines
404 B
Docker

FROM ubuntu:latest AS builder
RUN apt update && \
apt install -y curl && \
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
EXPOSE 8334
ENTRYPOINT ["/app/filestash.bin"]