FROM alpine:latest as alpine RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories RUN apk --update add ca-certificates RUN apk --update add mailcap VOLUME /srv EXPOSE 80 COPY .docker.json /.filebrowser.json COPY filebrowser /filebrowser ENTRYPOINT [ "/filebrowser" ]