Files
TypeWords/Dockerfile
2024-01-10 16:07:45 +08:00

6 lines
109 B
Docker

FROM node
COPY . /root/typing-word
WORKDIR /root/typing-word
EXPOSE 3000
RUN npm install
CMD ["npm", "start"]