initial commit

This commit is contained in:
qugalet 2023-07-09 23:53:49 +03:00
commit a1806cbac9
17 changed files with 3155 additions and 0 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM node:18-bookworm
WORKDIR /app
COPY package.json .
RUN npm i
COPY . .
RUN npm run generate
RUN npm run build
ENTRYPOINT [ "./entrypoint.sh" ]