feat: Refine notice filtering and Docker setup

Implement granular notice filtering logic based on user roles and notice targeting.
Update Dockerfiles and .dockerignore for a cleaner build process.
This commit is contained in:
2025-12-09 14:15:43 +01:00
parent 891ea7a12c
commit 25eafb1c6e
5 changed files with 20 additions and 69 deletions

View File

@@ -1,13 +0,0 @@
FROM node:18-alpine
WORKDIR /app
# Set production environment
ENV NODE_ENV=production
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3001
CMD ["node", "server.js"]