Added counter

This commit is contained in:
vagrant
2026-02-12 11:02:05 +00:00
parent a7612778a5
commit d7fd9fc470
5 changed files with 0 additions and 0 deletions

6
compose/counter/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