From 3505825d88f5f1207e90a4f10c8511383267ec11 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Mon, 11 Oct 2021 15:25:26 +0200 Subject: [PATCH] better comments in docker file --- backend/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 8a0067dae..2df3ff9e7 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -65,13 +65,13 @@ COPY ./backend/ ./ # Copy everything from database COPY ./database/ ../database/ -# npm install +# yarn install backend RUN yarn install --production=false --frozen-lockfile --non-interactive -# npm install database +# yarn install database RUN cd ../database && yarn install --production=false --frozen-lockfile --non-interactive -# npm build +# yarn build RUN yarn run build ##################################################################################