feat: use linuxserver based docker image

This commit is contained in:
Oleg Lobanov
2021-12-15 10:58:47 +01:00
parent a078f0b787
commit b8f35ce932
9 changed files with 68 additions and 17 deletions

16
Dockerfile.aarch64 Normal file
View File

@@ -0,0 +1,16 @@
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