Files
devstar_introduction/Dockerfile
yinxue 97ad55a919
Some checks failed
CI Pipeline / build (push) Failing after 1m39s
修改cicd
2025-08-11 19:42:48 +08:00

12 lines
134 B
Docker

FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]