From 5f81cd4729f52d02663cf44ca2569d7ba4369ee9 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Sun, 13 Feb 2022 22:12:14 -0800 Subject: [PATCH] Remove root pkg dependencies from db docker image Because this is just used to execute the migrations we can use the non-locked versions here and don't need to pull in all of the root workspace packages. --- packages/db/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/db/Dockerfile b/packages/db/Dockerfile index 9b5fe3890..532bdeb71 100644 --- a/packages/db/Dockerfile +++ b/packages/db/Dockerfile @@ -2,8 +2,6 @@ FROM node:14.18-alpine WORKDIR /app -COPY package.json . -COPY yarn.lock . COPY tsconfig.json . COPY /packages/db/package.json ./packages/db/package.json