MOBILE-3005 docker: Do not install cordova on docker

main
Pau Ferrer Ocaña 2019-05-02 12:51:33 +02:00
parent c6e01bfa66
commit 9add3c3f62
1 changed files with 6 additions and 4 deletions

View File

@ -11,15 +11,17 @@ EXPOSE 35729
# Port 53703 is the Chrome dev logger port. # Port 53703 is the Chrome dev logger port.
EXPOSE 53703 EXPOSE 53703
# MoodleMobile uses Cordova, Ionic, and Gulp. # MoodleMobile uses Ionic and Gulp.
RUN npm install -g cordova ionic gulp && rm -rf /root/.npm RUN npm i -g ionic gulp && rm -rf /root/.npm
WORKDIR /app WORKDIR /app
COPY . /app COPY . /app
# The setup script will handle npm installation, cordova setup, and gulp setup. # Install npm libraries and run gulp to initialize the project.
RUN npm run setup && rm -rf /root/.npm RUN npm install && gulp && rm -rf /root/.npm
RUN ionic info
# Provide a Healthcheck command for easier use in CI. # Provide a Healthcheck command for easier use in CI.
HEALTHCHECK --interval=10s --timeout=3s --start-period=30s CMD curl -f http://localhost:8100 || exit 1 HEALTHCHECK --interval=10s --timeout=3s --start-period=30s CMD curl -f http://localhost:8100 || exit 1