mirror of
https://github.com/immich-app/immich.git
synced 2026-02-22 04:40:34 +09:00
Some checks failed
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Docker / pre-job (push) Waiting to run
Docker / Re-Tag ML () (push) Blocked by required conditions
Docker / Re-Tag ML (-armnn) (push) Blocked by required conditions
Docker / Re-Tag ML (-cuda) (push) Blocked by required conditions
Docker / Re-Tag ML (-openvino) (push) Blocked by required conditions
Docker / Re-Tag ML (-rknn) (push) Blocked by required conditions
Docker / Re-Tag ML (-rocm) (push) Blocked by required conditions
Docker / Re-Tag Server () (push) Blocked by required conditions
Docker / Build and Push ML (armnn, linux/arm64, -armnn) (push) Blocked by required conditions
Docker / Build and Push ML (cpu, ) (push) Blocked by required conditions
Docker / Build and Push ML (cuda, linux/amd64, -cuda) (push) Blocked by required conditions
Docker / Build and Push ML (openvino, linux/amd64, -openvino) (push) Blocked by required conditions
Docker / Build and Push ML (rknn, linux/arm64, -rknn) (push) Blocked by required conditions
Docker / Build and Push ML (rocm, linux/amd64, {"linux/amd64": "mich"}, -rocm) (push) Blocked by required conditions
Docker / Build and Push Server (push) Blocked by required conditions
Docker / Docker Build & Push Server Success (push) Blocked by required conditions
Docker / Docker Build & Push ML Success (push) Blocked by required conditions
Docs build / pre-job (push) Waiting to run
Docs build / Docs Build (push) Blocked by required conditions
Static Code Analysis / pre-job (push) Waiting to run
Static Code Analysis / Run Dart Code Analysis (push) Blocked by required conditions
Static Code Analysis / zizmor (push) Waiting to run
Test / pre-job (push) Waiting to run
Test / Test & Lint Server (push) Blocked by required conditions
Test / Unit Test CLI (push) Blocked by required conditions
Test / Unit Test CLI (Windows) (push) Blocked by required conditions
Test / Lint Web (push) Blocked by required conditions
Test / Test Web (push) Blocked by required conditions
Test / End-to-End Lint (push) Blocked by required conditions
Test / Medium Tests (Server) (push) Blocked by required conditions
Test / End-to-End Tests (Server & CLI) (ubuntu-24.04-arm) (push) Blocked by required conditions
Test / End-to-End Tests (Server & CLI) (ubuntu-latest) (push) Blocked by required conditions
Test / End-to-End Tests (Web) (ubuntu-24.04-arm) (push) Blocked by required conditions
Test / End-to-End Tests (Web) (ubuntu-latest) (push) Blocked by required conditions
Test / End-to-End Tests Success (push) Blocked by required conditions
Test / Unit Test Mobile (push) Blocked by required conditions
Test / Unit Test ML (push) Blocked by required conditions
Test / .github Files Formatting (push) Blocked by required conditions
Test / ShellCheck (push) Waiting to run
Test / OpenAPI Clients (push) Waiting to run
Test / SQL Schema Checks (push) Waiting to run
CLI Build / CLI Publish (push) Has been cancelled
CLI Build / Docker (push) Has been cancelled
chore(deps): update base-image Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
86 lines
2.9 KiB
Docker
86 lines
2.9 KiB
Docker
# dev build
|
|
FROM ghcr.io/immich-app/base-server-dev:202505131114@sha256:cf4507bbbf307e9b6d8ee9418993321f2b85867da8ce14d0a20ccaf9574cb995 AS dev
|
|
|
|
RUN apt-get install --no-install-recommends -yqq tini
|
|
WORKDIR /usr/src/app
|
|
COPY server/package.json server/package-lock.json ./
|
|
COPY server/patches ./patches
|
|
RUN npm ci && \
|
|
# exiftool-vendored.pl, sharp-linux-x64 and sharp-linux-arm64 are the only ones we need
|
|
# they're marked as optional dependencies, so we need to copy them manually after pruning
|
|
rm -rf node_modules/@img/sharp-libvips* && \
|
|
rm -rf node_modules/@img/sharp-linuxmusl-x64
|
|
ENV PATH="${PATH}:/usr/src/app/bin" \
|
|
IMMICH_ENV=development \
|
|
NVIDIA_DRIVER_CAPABILITIES=all \
|
|
NVIDIA_VISIBLE_DEVICES=all
|
|
ENTRYPOINT ["tini", "--", "/bin/sh"]
|
|
|
|
|
|
FROM dev AS prod
|
|
|
|
COPY server .
|
|
RUN npm run build
|
|
RUN npm prune --omit=dev --omit=optional
|
|
COPY --from=dev /usr/src/app/node_modules/@img ./node_modules/@img
|
|
COPY --from=dev /usr/src/app/node_modules/exiftool-vendored.pl ./node_modules/exiftool-vendored.pl
|
|
|
|
# web build
|
|
FROM node:22.15.0-alpine3.20@sha256:686b8892b69879ef5bfd6047589666933508f9a5451c67320df3070ba0e9807b AS web
|
|
|
|
WORKDIR /usr/src/open-api/typescript-sdk
|
|
COPY open-api/typescript-sdk/package*.json open-api/typescript-sdk/tsconfig*.json ./
|
|
RUN npm ci
|
|
COPY open-api/typescript-sdk/ ./
|
|
RUN npm run build
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY web/package*.json web/svelte.config.js ./
|
|
RUN npm ci
|
|
COPY web ./
|
|
COPY i18n ../i18n
|
|
RUN npm run build
|
|
|
|
|
|
# prod build
|
|
FROM ghcr.io/immich-app/base-server-prod:202505061115@sha256:9971d3a089787f0bd01f4682141d3665bcf5efb3e101a88e394ffd25bee4eedb
|
|
|
|
WORKDIR /usr/src/app
|
|
ENV NODE_ENV=production \
|
|
NVIDIA_DRIVER_CAPABILITIES=all \
|
|
NVIDIA_VISIBLE_DEVICES=all
|
|
COPY --from=prod /usr/src/app/node_modules ./node_modules
|
|
COPY --from=prod /usr/src/app/dist ./dist
|
|
COPY --from=prod /usr/src/app/bin ./bin
|
|
COPY --from=web /usr/src/app/build /build/www
|
|
COPY server/resources resources
|
|
COPY server/package.json server/package-lock.json ./
|
|
COPY server/start*.sh ./
|
|
COPY "docker/scripts/get-cpus.sh" ./
|
|
RUN npm install -g @immich/cli && npm cache clean --force
|
|
COPY LICENSE /licenses/LICENSE.txt
|
|
COPY LICENSE /LICENSE
|
|
ENV PATH="${PATH}:/usr/src/app/bin"
|
|
|
|
ARG BUILD_ID
|
|
ARG BUILD_IMAGE
|
|
ARG BUILD_SOURCE_REF
|
|
ARG BUILD_SOURCE_COMMIT
|
|
|
|
ENV IMMICH_BUILD=${BUILD_ID}
|
|
ENV IMMICH_BUILD_URL=https://github.com/immich-app/immich/actions/runs/${BUILD_ID}
|
|
ENV IMMICH_BUILD_IMAGE=${BUILD_IMAGE}
|
|
ENV IMMICH_BUILD_IMAGE_URL=https://github.com/immich-app/immich/pkgs/container/immich-server
|
|
ENV IMMICH_REPOSITORY=immich-app/immich
|
|
ENV IMMICH_REPOSITORY_URL=https://github.com/immich-app/immich
|
|
ENV IMMICH_SOURCE_REF=${BUILD_SOURCE_REF}
|
|
ENV IMMICH_SOURCE_COMMIT=${BUILD_SOURCE_COMMIT}
|
|
ENV IMMICH_SOURCE_URL=https://github.com/immich-app/immich/commit/${BUILD_SOURCE_COMMIT}
|
|
|
|
VOLUME /usr/src/app/upload
|
|
EXPOSE 2283
|
|
ENTRYPOINT ["tini", "--", "/bin/bash"]
|
|
CMD ["start.sh"]
|
|
|
|
HEALTHCHECK CMD immich-healthcheck
|