removed idea folder

This commit is contained in:
2025-01-12 22:25:24 +01:00
parent e8442ffde4
commit 79bdb7163f
27 changed files with 2844 additions and 273 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:19-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD ["node", "./src/OSCWebServer/server.js"]