Updated Dockerfile

Suppressed npm warnings and fixed CMD to ENTRYPOINT.
pull/2667/head
socketz 2022-11-22 17:24:32 +01:00 committed by GitHub
parent cec2da5128
commit a11de95962
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ RUN npm install gulp gulp-cli -g
WORKDIR /build
COPY . .
RUN npm install --only=dev
RUN npm install --loglevel=error --only=dev
RUN gulp
@ -42,4 +42,4 @@ RUN touch config.json.tmp
EXPOSE 3333 8080 8443 80
CMD ["./docker/run.sh"]
ENTRYPOINT ["./docker/run.sh"]