From ae0ed04621cc9f6b191d8e6911cc69c35dbb104c Mon Sep 17 00:00:00 2001 From: alecmerdler Date: Tue, 27 Jun 2017 11:56:14 -0700 Subject: [PATCH] remove reference to typings NPM package in Dockerfile --- .gitignore | 1 - Dockerfile | 1 - quay-base.dockerfile | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 92c6f1dea..e548f6174 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,6 @@ static/fonts static/build stack_local test/data/registry/ -typings GIT_HEAD .idea .python-version diff --git a/Dockerfile b/Dockerfile index c424800e3..fd48d3254 100644 --- a/Dockerfile +++ b/Dockerfile @@ -89,7 +89,6 @@ RUN ln -s /usr/bin/nodejs /usr/bin/node ADD package.json package.json ADD tsconfig.json tsconfig.json ADD webpack.config.js webpack.config.js -ADD typings.json typings.json ADD yarn.lock yarn.lock RUN yarn install --ignore-engines diff --git a/quay-base.dockerfile b/quay-base.dockerfile index 8fde99c75..7b01b3573 100644 --- a/quay-base.dockerfile +++ b/quay-base.dockerfile @@ -80,7 +80,7 @@ RUN curl -L -o /usr/local/bin/prometheus-aggregator https://github.com/coreos/pr # Install front-end dependencies RUN ln -s /usr/bin/nodejs /usr/bin/node -COPY static/ package.json tsconfig.json webpack.config.js typings.json yarn.lock ./ +COPY static/ package.json tsconfig.json webpack.config.js tslint.json yarn.lock ./ RUN yarn install --ignore-engines