add fly deploy

This commit is contained in:
MapleLeaf
2021-12-29 14:36:54 -06:00
parent 78b7db897e
commit 1b4cedd857
3 changed files with 58 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:lts-slim
WORKDIR /app
COPY / ./
RUN ls -R
RUN npm install -g pnpm
RUN pnpm install --unsafe-perm --frozen-lockfile
RUN pnpm -C packages/docs build
CMD [ "pnpm", "-C", "packages/docs", "start" ]