filebrowser/Dockerfile.riscv64
Olof Nord d56a79772e Add RISC-V support to project
Adjust goreleaser and add build and docker support
Add new Dockerfile as there is not yet any linux/riscv64 support for alpine:latest.
2022-11-11 23:30:27 +01:00

15 lines
356 B
Docker

FROM riscv64/alpine:edge
RUN apk --update add ca-certificates \
mailcap \
curl
HEALTHCHECK --start-period=2s --interval=5s --timeout=3s \
CMD curl -f http://localhost/health || exit 1
VOLUME /srv
EXPOSE 80
COPY docker_config.json /.filebrowser.json
COPY filebrowser /filebrowser
ENTRYPOINT [ "/filebrowser" ]