Added docker compose file

This commit is contained in:
Arnaud Nelissen
2025-10-08 12:53:21 +02:00
parent 539b6f262e
commit d23d6c4a5e
3 changed files with 63 additions and 25 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
# LSP Dockerfile
FROM node
WORKDIR /app
COPY package.json /app
RUN npm install
COPY . /app
CMD ["node", "app.js"]