This commit is contained in:
2023-04-08 20:26:26 +05:00
parent bf2993743f
commit 8425b8fb67
3 changed files with 26 additions and 0 deletions

9
.build/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM node:18.15.0-alpine3.17
WORKDIR /root
COPY . .
RUN npm install \
&& rm -rf /usr/local/share/.cache
CMD npm run dev