better comments in docker file

This commit is contained in:
Ulf Gebhardt 2021-10-11 15:25:26 +02:00
parent a883a435ec
commit 3505825d88
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -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
##################################################################################