chore: remove old files

This commit is contained in:
karishmas6
2024-10-29 08:49:02 +05:30
parent 6d3ac72c3c
commit 389e8fd2f6
12 changed files with 0 additions and 1129 deletions

View File

@@ -1,19 +0,0 @@
FROM node:18-alpine
# Set working directory
WORKDIR /app
# Copy package.json and package-lock.json
COPY backend/package*.json ./
# Install dependencies
RUN npm install --production
# Copy the backend code
COPY backend/ ./
# Expose the API port (8080 for the backend)
EXPOSE 8080
# Start the backend server
CMD ["npm", "start"]