diff --git a/react_test/spa_react/Dockerfile b/react_test/spa_react/Dockerfile new file mode 100644 index 0000000..68afb46 --- /dev/null +++ b/react_test/spa_react/Dockerfile @@ -0,0 +1,12 @@ +# frontend/Dockerfile +FROM node:22.9-alpine3.19 AS prod + +WORKDIR / + +COPY public/ /public +COPY src/ /src +COPY package.json / + +RUN npm install + +CMD ["npm", "start"] \ No newline at end of file