Explorar el Código

npm install before adding the rest of files in dockerfile

Michael Strickland hace 7 años
padre
commit
f5cdc8c3ca
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      Dockerfile

+ 3 - 1
Dockerfile Ver fichero

@@ -8,8 +8,10 @@ WORKDIR /usr/src/app
8 8
 COPY package.json /usr/src/app/
9 9
 RUN apt-get update -y && apt-get upgrade -y && \
10 10
     apt-get install -y nodejs npm libcairo2-dev libjpeg62-turbo-dev libpango1.0-dev libgif-dev libpng-dev build-essential g++ ffmpeg
11
-COPY ./ /usr/src/app/
11
+COPY package.json* yarn.lock* .npmrc* /usr/src/app/
12 12
 RUN npm install --production
13 13
 
14
+COPY ./ /usr/src/app/
15
+
14 16
 EXPOSE 8888
15 17
 CMD [ "npm", "start" ]