feat: add alpine and debian docker images

This commit is contained in:
Oleg Lobanov
2020-06-16 22:48:07 +02:00
parent 89773447a5
commit 66863b72f7
3 changed files with 46 additions and 0 deletions

11
Dockerfile.alpine Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:latest as alpine
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" ]