Fix missing patches folder to deploy server (#1771)

* Fix missing patches folder to deploy server

* Fix missing patches folder to deploy server

* remove extra line

* add fix for twenty-dev
This commit is contained in:
Weiko 2023-09-29 15:41:09 +02:00 committed by GitHub
parent c82ac773b9
commit 3851e0f992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@ WORKDIR /app/server
COPY ../../server/package.json .
COPY ../../server/yarn.lock .
COPY ../../server/patches ./patches
RUN yarn install
WORKDIR /app