70cf894
1
2
3
4
5
6
7
8
9
10
11
from node:18-alpine WORKDIR /app COPY . . RUN npm install COPY . . RUN npm run build EXPOSE 3000 CMD ["node", "build"]