From d953a56eb66cbd2e096caa4e6a7e8dafb66a84e3 Mon Sep 17 00:00:00 2001 From: Brett Snyder Date: Wed, 2 Dec 2020 03:15:53 -0500 Subject: [PATCH] docker: fix Dockerfile after Gruntfile.js removed (#29515) --- Dockerfile | 2 +- Dockerfile.ubuntu | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d44436bdb06..a710cbaf4cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY packages packages RUN yarn install --pure-lockfile --no-progress -COPY Gruntfile.js tsconfig.json .eslintrc .editorconfig .browserslistrc .prettierrc.js ./ +COPY tsconfig.json .eslintrc .editorconfig .browserslistrc .prettierrc.js ./ COPY public public COPY tools tools COPY scripts scripts diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 195d3b9289b..a4d24559685 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -7,7 +7,7 @@ COPY packages packages RUN yarn install --pure-lockfile -COPY Gruntfile.js tsconfig.json .eslintrc .editorconfig .browserslistrc .prettierrc.js ./ +COPY tsconfig.json .eslintrc .editorconfig .browserslistrc .prettierrc.js ./ COPY public public COPY tools tools COPY scripts scripts