diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..7038692f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM node:20-alpine + +WORKDIR /stocknear-frontend + +COPY . . +RUN npm install + +CMD ["npm", "run", "dev"] \ No newline at end of file