diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000000..7ec47c37cfe --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:21 +WORKDIR /app +COPY . . +RUN npm install +EXPOSE 8000 +CMD [ "npm", "run", "start:dev" ] \ No newline at end of file