initial commit
This commit is contained in:
commit
a1806cbac9
17 changed files with 3155 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue