mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-01-23 10:45:24 +00:00
11 lines
234 B
Docker
11 lines
234 B
Docker
FROM scratch
|
|
|
|
COPY --from=filebrowser/dev /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
|
|
VOLUME /srv
|
|
EXPOSE 80
|
|
|
|
COPY .docker.json /.filebrowser.json
|
|
COPY filebrowser /filebrowser
|
|
|
|
ENTRYPOINT [ "/filebrowser" ]
|