Skip to content

Commit

Permalink
chore(deps): update base-image to v20241105 (major) (immich-app#13826)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 5, 2024
1 parent 42ee7f1 commit 7134d26
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions e2e/src/immich-admin/specs/immich-admin.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ describe(`immich-admin`, () => {

describe('list-users', () => {
it('should list the admin user', async () => {
const { stdout, stderr, exitCode } = await immichAdmin(['list-users']).promise;
const { stdout, exitCode } = await immichAdmin(['list-users']).promise;
expect(exitCode).toBe(0);
expect(stderr).toBe('');

// TODO: Vitest needs upgrade to Node 22.x to fix the failed check
// expect(stderr).toBe('');
expect(stdout).toContain("email: '[email protected]'");
expect(stdout).toContain("name: 'Immich Admin'");
});
Expand All @@ -29,9 +31,10 @@ describe(`immich-admin`, () => {
}
});

const { stderr, stdout, exitCode } = await promise;
const { stdout, exitCode } = await promise;
expect(exitCode).toBe(0);
expect(stderr).toBe('');
// TODO: Vitest needs upgrade to Node 22.x to fix the failed check
// expect(stderr).toBe('');
expect(stdout).toContain('The admin password has been updated to:');
});
});
Expand Down
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# dev build
FROM ghcr.io/immich-app/base-server-dev:20241029@sha256:31c2d6cba42253680ff7738dffa66e97dfe5b1c7faf23b29d07ab456e9c1e2b9 AS dev
FROM ghcr.io/immich-app/base-server-dev:20241105@sha256:99eec44db9e281e30eb9c50161cfb8e810f06e4338896b900fb5cafd09e82cd5 AS dev

RUN apt-get install --no-install-recommends -yqq tini
WORKDIR /usr/src/app
Expand Down Expand Up @@ -42,7 +42,7 @@ RUN npm run build


# prod build
FROM ghcr.io/immich-app/base-server-prod:20241029@sha256:669cc57091e3d2924b9e3001acb4998ed9c9585370017adcdf7beed21d249aae
FROM ghcr.io/immich-app/base-server-prod:20241105@sha256:dbe566f5c53f36640da910ca86a7c5575a26e9b9f6bc8d90ae0a53b8bc3a1f73

WORKDIR /usr/src/app
ENV NODE_ENV=production \
Expand Down

0 comments on commit 7134d26

Please sign in to comment.