mirror of
https://github.com/gtsteffaniak/filebrowser.git
synced 2026-04-06 00:01:42 +08:00
50 lines
2.0 KiB
Docker
50 lines
2.0 KiB
Docker
FROM gtstef/ffmpeg:8.1-decode AS ffmpeg
|
|
FROM golang:alpine AS base
|
|
ARG VERSION
|
|
ARG REVISION
|
|
WORKDIR /app
|
|
COPY ./backend ./
|
|
RUN apk update && apk add --no-cache gcc musl-dev
|
|
ENV CGO_ENABLED=1
|
|
RUN go build -tags mupdf,musl -ldflags="-w -s \
|
|
-X 'github.com/gtsteffaniak/filebrowser/backend/common/version.Version=${VERSION}' \
|
|
-X 'github.com/gtsteffaniak/filebrowser/backend/common/version.CommitSHA=${REVISION}'" \
|
|
-o filebrowser .
|
|
|
|
FROM node:jod-slim AS nbuild
|
|
WORKDIR /app
|
|
COPY ./frontend/package.json ./
|
|
RUN apt-get update && apt-get install -y --no-install-recommends git ca-certificates \
|
|
&& git config --global url."https://github.com/".insteadOf "git@github.com:" \
|
|
&& git config --global url."https://github.com/".insteadOf "ssh://git@github.com/"
|
|
RUN npm i --maxsockets 1
|
|
COPY ./frontend/ ./
|
|
RUN npm run build:docker
|
|
|
|
FROM alpine:latest
|
|
COPY --from=ffmpeg [ "/ffmpeg", "/ffprobe", "/usr/local/bin/" ]
|
|
ENV FILEBROWSER_FFMPEG_PATH="/usr/local/bin/"
|
|
ENV FILEBROWSER_DATABASE="/home/filebrowser/data/database.db"
|
|
ENV FILEBROWSER_CONFIG="/home/filebrowser/data/config.yaml"
|
|
ENV PATH="$PATH:/home/filebrowser"
|
|
RUN apk --no-cache add ca-certificates mailcap tzdata curl exiftool
|
|
RUN adduser -D -s /bin/true -u 1000 filebrowser
|
|
USER filebrowser
|
|
WORKDIR /home/filebrowser
|
|
# copy config to two locations for compatibility
|
|
COPY --from=base --chown=filebrowser:1000 [ "/app/filebrowser", "./" ]
|
|
COPY --from=base --chown=filebrowser:1000 [ "/app/config.yaml", "./data/config.yaml" ]
|
|
COPY --from=base --chown=filebrowser:1000 [ "/app/config.yaml", "./" ]
|
|
COPY --from=base --chown=filebrowser:1000 [ "/app/reduce-rounded-corners.css", "./" ]
|
|
COPY --from=nbuild --chown=filebrowser:1000 [ "/app/dist/", "./http/dist/" ]
|
|
## sanity checks
|
|
RUN [ "filebrowser", "version" ]
|
|
RUN [ "ffmpeg", "-version" ]
|
|
RUN [ "ffprobe", "-version" ]
|
|
RUN [ "exiftool", "-ver" ]
|
|
# exposing default port for auto discovery.
|
|
EXPOSE 80
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
|
|
CMD curl -f http://localhost:80/health || exit 1
|
|
ENTRYPOINT [ "./filebrowser" ]
|