From 8200675f6c9bc38524a4f3611e91ae2a7f39df95 Mon Sep 17 00:00:00 2001 From: James Brumond Date: Fri, 18 Aug 2023 16:09:14 -0700 Subject: [PATCH] typo --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 16a1eb6..b3260cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ COPY src/ ${BUILD_PATH}/src/ # Install dependencies and build the application source # (mount the NPM credentials so we can install private packages) -RUN --mount-type=secret,id=npmrc,target=/root/.npmrc npm ci +RUN --mount=type=secret,id=npmrc,target=/root/.npmrc npm ci RUN npm run tsc # Remove any dev dependencies now that the app is built