You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
390 B
16 lines
390 B
FROM ghcr.io/linuxserver/baseimage-alpine:3.20
|
|
|
|
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 |