diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..121f5c3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM node:18.20.4-alpine3.20 + +WORKDIR /usr/src/app +COPY . . + +RUN npm install + +CMD [ "npm", "start" ]