first commit

This commit is contained in:
DESKTOP-DH6BVPV\chiefsoft
2022-11-19 19:36:45 -05:00
commit a46382e148
43 changed files with 29540 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node:18.12.1
COPY . /www/app
RUN npm install -g cordova ionic
RUN npm install -g bower
RUN npm install -g gulp
WORKDIR /www/app
RUN npm install
EXPOSE 8100
ENTRYPOINT ["ionic"]
CMD ["serve", "8100", "--address", "0.0.0.0"]