Explorar el Código

fix: missing eslint babel files in docker multi-stage

Nicolas Giard hace 6 años
padre
commit
ba324e7eb9
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  1. 5 2
      dev/build/Dockerfile

+ 5 - 2
dev/build/Dockerfile

@@ -10,9 +10,12 @@ RUN apk update && \
 
 WORKDIR /var/wiki
 
-COPY ./package.json ./package.json
-COPY ./dev ./dev
 COPY ./client ./client
+COPY ./dev ./dev
+COPY ./package.json ./package.json
+COPY ./.babelrc ./.babelrc
+COPY ./.eslintignore ./.eslintignore
+COPY ./.eslintrc.yml ./.eslintrc.yml
 
 RUN yarn
 RUN yarn build