From 75cfb7ad1426317bf46e223131c57d3f2641c92c Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Thu, 10 Mar 2022 18:34:46 -0600 Subject: [PATCH] Update Dockerfile and package scripts --- Dockerfile | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9975025..d43691f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,7 +58,7 @@ CMD [ "yarn", "run", "start:dev" ] FROM base-${BASE}-dev AS builder-base WORKDIR /app RUN yarn global add lerna typescript rimraf -COPY docker/scripts docker/scripts +COPY scripts/docker scripts/docker COPY lerna.json package.json tsconfig*.json ./ RUN yarn install COPY api api diff --git a/package.json b/package.json index 9f2b95a..bc1d23c 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,8 @@ "build:packages": "lerna run build --scope=@ldt/package-*", "build:services": "lerna run build --scope=@ldt/service-*", "export": "rimraf ./build && yarn run export:deps && yarn run export:builds", - "export:deps": "/bin/sh ./docker/scripts/export_deps.sh", - "export:builds": "/bin/sh ./docker/scripts/export_builds.sh" + "export:deps": "/bin/sh ./scripts/docker/export_deps.sh", + "export:builds": "/bin/sh ./scripts/docker/export_builds.sh" }, "devDependencies": { "@types/chai": "^4.3.0",