Add technical; snippet support

This commit is contained in:
2022-03-31 10:22:41 -05:00
parent 2a8571d6dd
commit 22c2b9f665
1093 changed files with 916277 additions and 133 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:16
RUN yarn global add pnpm
RUN mkdir /app
COPY lib/ /app
RUN rm -f /app/.env
COPY .env.docker /app/.env
COPY package.json /app
COPY pnpm-lock.yaml /app
RUN cd /app && pnpm install
WORKDIR /app
CMD ["node", "index.js"]