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