Useless Dockerfile has been removed. .gitignore updated

This commit is contained in:
2026-08-02 13:38:43 +05:00
parent 6707a8e27e
commit ea49920a12
2 changed files with 1 additions and 17 deletions
+1
View File
@@ -6,3 +6,4 @@ dist/
test_data/ test_data/
venv/ venv/
web/frontend/node_modules web/frontend/node_modules
TODO.md
-17
View File
@@ -1,17 +0,0 @@
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Install dependencies
COPY package.json package-lock.json* ./
RUN npm install
# Copy the application code
COPY . .
# Expose the port
EXPOSE 5173
# Start the development server
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]