You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ju...@apache.org on 2019/12/12 07:36:22 UTC

[fineract-cn-fims-web-app] branch develop updated: update Docker images to most recent version

This is an automated email from the ASF dual-hosted git repository.

juhan pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract-cn-fims-web-app.git


The following commit(s) were added to refs/heads/develop by this push:
     new 61c52fa  update Docker images to most recent version
     new 8a1a848  Merge pull request #21 from aasaru/update_dockerfile_images
61c52fa is described below

commit 61c52faa5bb8d92b9346b1d016318c00cb4a374f
Author: Juhan Aasaru <Ju...@nortal.com>
AuthorDate: Thu Sep 26 22:33:34 2019 +0300

    update Docker images to most recent version
---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 53675ab..c9863e6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
 # Stage 1: Build fims web app
-FROM node:8.11.2-alpine as node
+FROM node:8.16.1-alpine as node
 
 WORKDIR /usr/src/app
 
@@ -12,7 +12,7 @@ COPY . .
 RUN npm run build
 
 # Stage 2: Host Fims web app on Nginx
-FROM nginx:1.16.0
+FROM nginx:1.17.4
 
 RUN rm -f /etc/nginx/nginx.conf