mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-01-23 02:35:10 +00:00
16 lines
No EOL
398 B
Text
16 lines
No EOL
398 B
Text
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.14
|
|
|
|
RUN apk --update add ca-certificates \
|
|
mailcap \
|
|
curl
|
|
|
|
HEALTHCHECK --start-period=2s --interval=5s --timeout=3s \
|
|
CMD curl -f http://localhost/health || exit 1
|
|
|
|
# copy local files
|
|
COPY docker/root/ /
|
|
COPY filebrowser /usr/bin/filebrowser
|
|
|
|
# ports and volumes
|
|
VOLUME /srv /config /database
|
|
EXPOSE 80 |