This commit is contained in:
Hua
2024-08-20 15:29:43 +08:00
parent 0e94598d4c
commit caf6d993d3

13
dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM node:14
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD [ "node", "connect.js" ]