Spaces:
Paused
Paused
File size: 353 Bytes
bcf46c3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Use the official Playwright Node image
FROM mcr.microsoft.com/playwright:v1.44.0-jammy
WORKDIR /app
# Copy package files and install dependencies
COPY package*.json ./
RUN npm install
# Copy application source code
COPY . .
# Build the TypeScript code
RUN npm run build
# Expose the port
EXPOSE 3000
# Start the application
CMD ["npm", "start"]
|