Remix - Deployment
Given this Dockerfile snippet for a Remix app:
What happens when you build and run this container?
FROM node:18-alpine WORKDIR /app COPY package.json . RUN npm install COPY . . CMD ["npm", "run", "start"]
What happens when you build and run this container?
