Spaces:
Build error
Build error
File size: 264 Bytes
49e53ae | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | FROM node:20-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy app files
COPY . .
# Build the app
RUN npm run build
# Expose port
EXPOSE 3000
# Run the app
CMD ["npm", "start"]
|