This commit is contained in:
wphan
2022-11-29 16:29:46 -08:00
commit 74554249e4
13 changed files with 5497 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM public.ecr.aws/bitnami/node:16
RUN apt-get install git
ENV NODE_ENV=production
RUN npm install -g yarn
RUN npm install -g typescript
WORKDIR /app
COPY . .
RUN yarn
RUN yarn build
EXPOSE 9464
CMD [ "yarn", "start:all" ]