diff --git a/Dockerfile b/Dockerfile index 86c0c4c..4377b9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,14 @@ +#Version Dockerfile AAB FROM debian:9 - -RUN apt-get update -yq \ - && apt-get install curl gnupg -yq \ - && curl -sL https://deb.nodesource.com/setup_10.x | bash \ - && apt-get install nodejs -yq \ - && apt-get clean -y - +RUN apt-get update \ +&& apt-get install curl gnupg -yq \ +&& curl -sL https://deb.nodesource.com/setup_10.x | bash \ +&& apt-get install nodejs -yq \ +&& apt-getclean -y ADD . /app/ WORKDIR /app RUN npm install - EXPOSE 2368 VOLUME /app/logs - CMD npm run start +