Spaces:
Sleeping
Sleeping
File size: 288 Bytes
aa916fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM node:18-alpine
WORKDIR /app
# Copy package files and install dependencies
COPY package*.json ./
RUN npm install
# Copy the rest of the application code
COPY . .
# Build the application
RUN npm run build
# Expose the port
EXPOSE 3000
# Start the application
CMD ["npm", "start"] |