From f0ed66cc30478bce8d94fa181736729d59e6526e Mon Sep 17 00:00:00 2001 From: bhavay Date: Thu, 4 Jun 2020 14:13:15 +0530 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d6a230b..41fbf21 100755 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ RUN apt-get install npm -y RUN apt-get update && \ apt-get -y install gcc mono-mcs && \ rm -rf /var/lib/apt/lists/* -RUN apt install default-jre -y -RUN apt install default-jdk -y +RUN apt-get update && apt-get install default-jre -y +RUN apt-get update && apt-get install default-jdk -y COPY /editor-backend/package.json . COPY /editor-backend . CMD ["npm","start"]