diff --git a/frontend/dockerfile b/frontend/dockerfile deleted file mode 100644 index 52d9096..0000000 --- a/frontend/dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -FROM node:20-alpine as build-stage -WORKDIR /app -COPY package*.json ./ -RUN npm install -COPY . . -RUN npm run build - -FROM node:20-alpine as production-stage -WORKDIR /app -COPY --from=build-stage /app /app -EXPOSE 3000 -ENV NODE_ENV=production -CMD ["npm", "run", "start"] \ No newline at end of file