From e9af632c578cc017b8ead68facb7d52852ae7bd4 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Fri, 6 Jun 2025 23:15:01 +0530 Subject: [PATCH] chore: cleanup old docker files --- Dockerfile | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 9cb25d6f..00000000 --- a/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -FROM --platform=$BUILDPLATFORM node:18-alpine AS builder - -WORKDIR /app - -# Copy package files -COPY package*.json ./ - -# Install dependencies -RUN npm install --legacy-peer-deps - -# Copy frontend source code and config -COPY src ./src -COPY public ./public -COPY index.html ./ -COPY vite.config.js ./ -COPY tsconfig.json ./ - -# Expose the frontend port -EXPOSE ${FRONTEND_PORT:-5173} - -# Start the frontend using the client script -CMD ["npm", "run", "client", "--", "--host"] \ No newline at end of file