react-docker-optimization/Dockerfile

5 lines
70 B
Text
Raw Permalink Normal View History

2025-01-03 23:24:22 +01:00
FROM node:18
COPY . .
RUN npm install
EXPOSE 3000
CMD ["npm", "start"]