diff --git a/src/frontend/dev.Dockerfile b/src/frontend/dev.Dockerfile new file mode 100644 index 000000000..90766088c --- /dev/null +++ b/src/frontend/dev.Dockerfile @@ -0,0 +1,6 @@ +FROM node:19-alpine as frontend_build +ARG BACKEND +WORKDIR /app +COPY . /app +RUN npm install +CMD ["npm", "start"] \ No newline at end of file