Skip to content

Commit

Permalink
/
Browse files Browse the repository at this point in the history
  • Loading branch information
Pankaj committed Oct 8, 2024
1 parent 1dd432a commit 6a7fda0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions frontend/dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
# Use Node.js official image
FROM node:18-alpine

# Set the working directory inside the container
WORKDIR /usr/src/app

# Copy package.json and package-lock.json (if present)
COPY package*.json ./

# Install dependencies
RUN npm install

# Copy the rest of the application code
COPY . .

# Expose the port used by the frontend application
EXPOSE 5173

# Start the application
CMD ["npm", "run", "dev"]

0 comments on commit 6a7fda0

Please sign in to comment.