Adding documentation for how to prep and use copilot for deployment

This commit is contained in:
Keith Stevens
2022-12-26 14:49:47 +09:00
parent 24eaed269c
commit 87342053ea
4 changed files with 188 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM --platform=linux/amd64 node:16.18.0 AS runner
WORKDIR /app
COPY ./website/ .
CMD ["npx", "prisma", "db", "push"]