Initial commit: Spotify to Lidarr frontend with Docker and Unraid script

This commit is contained in:
J0Z1L 2026-02-27 23:07:13 +01:00
commit 87a680326e
12 changed files with 996 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY . .
ENV NODE_ENV=production
EXPOSE 3000
CMD ["npm", "start"]