mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-01-23 18:54:55 +00:00
12 lines
243 B
Docker
12 lines
243 B
Docker
FROM scratch
|
|
|
|
COPY --from=filebrowser/dev /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
|
|
VOLUME /tmp
|
|
VOLUME /srv
|
|
EXPOSE 80
|
|
|
|
COPY filebrowser /filebrowser
|
|
COPY Docker.json /.filebrowser.json
|
|
|
|
ENTRYPOINT ["/filebrowser"]
|