Added app

This commit is contained in:
2026-02-12 10:49:29 +01:00
parent e53ca9e0f2
commit ec157c38d3
7 changed files with 217 additions and 1 deletions

6
compose/app/Dockerfile Executable file
View File

@@ -0,0 +1,6 @@
FROM node:4.6
WORKDIR /app
ADD . /app
RUN npm install
EXPOSE 3000
CMD npm start