File size: 655 Bytes
43bfdfd a559367 43bfdfd a559367 43bfdfd a559367 43bfdfd a559367 43bfdfd a559367 43bfdfd a559367 970de04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Use an official Node runtime as a parent image
FROM node:18
# Create a directory for the application
WORKDIR /app
# Copy the package.json and package-lock.json for both frontend and backend
COPY frontend/package*.json ./frontend/
COPY backend/package*.json ./backend/
# Install dependencies for frontend
WORKDIR /app/frontend
RUN npm install
# Install dependencies for backend
WORKDIR /app/backend
RUN npm install
# Copy the rest of the application code
WORKDIR /app
COPY . .
# Expose the ports
EXPOSE 5173
EXPOSE 3000
# Define the command to run the apps
CMD ["sh", "-c", "npm run dev --prefix /app/frontend & npm run dev --prefix /app/backend"] |