diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 5572d34..d694f4f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-bullseye +FROM node:23-bullseye LABEL maintainer=simojenki diff --git a/Dockerfile b/Dockerfile index 6ad3552..67850d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-bullseye-slim AS build +FROM node:23-bullseye-slim AS build WORKDIR /bonob @@ -36,7 +36,7 @@ RUN apt-get update && \ NODE_ENV=production npm install --omit=dev -FROM node:22-bullseye-slim +FROM node:23-bullseye-slim LABEL maintainer="simojenki" \ org.opencontainers.image.source="https://github.com/simojenki/bonob" \ diff --git a/src/app.ts b/src/app.ts index 7641318..104b914 100644 --- a/src/app.ts +++ b/src/app.ts @@ -6,11 +6,11 @@ import logger from "./logger"; import { axiosImageFetcher, cachingImageFetcher, - SubsonicMusicService, TranscodingCustomPlayers, NO_CUSTOM_PLAYERS, Subsonic } from "./subsonic"; +import { SubsonicMusicService} from "./subsonic_music_library"; import { InMemoryAPITokens, sha256 } from "./api_tokens"; import { InMemoryLinkCodes } from "./link_codes"; import readConfig from "./config";