Support using with docker compose

This commit is contained in:
sixzeroo
2023-03-18 21:54:51 +08:00
parent fcb87725d2
commit 787f780863
4 changed files with 28 additions and 1 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:18
ADD . /work
WORKDIR /work
RUN npm ci
CMD ["bash"]