mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
13 lines
265 B
Docker
13 lines
265 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 /config.json
|
|
|
|
ENTRYPOINT ["/filebrowser", "--config", "/config.json"]
|