Files
FloatEV-App/docker/Dockerfile
T
DESKTOP-DH6BVPV\chiefsoft a46382e148 first commit
2022-11-19 19:36:45 -05:00

15 lines
232 B
Docker

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"]