Compare commits

..

No commits in common. "c6ab0ef31be2b527a037e0576d314148ad872dcd" and "608fddb4bdbfbb1a22bc824435572d7d6b90d837" have entirely different histories.

1 changed files with 1 additions and 5 deletions

View File

@ -1,15 +1,11 @@
FROM node:8-slim
FROM node:6-slim
WORKDIR /usr/src/app
COPY package.json /usr/src/app
RUN apt-get update \
&& apt-get install git -y \
&& apt-get install -y jq --no-install-recommends \
&& apt install build-essential -y \
&& apt-get install python -y \
&& apt-get install g++ -y \
&& npm install --production \
&& rm -rf /var/lib/apt/lists/* \
&& npm cache clear --force \