-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Description
基于node镜像
FROM node:lts-alpine
设置工作目录
WORKDIR /app
复制所有文件到工作目录
COPY . .
安装依赖
RUN npm install --registry=https://registry.npm.taobao.org
暴露端口
EXPOSE 4200
启动容器时运行npm start
CMD ["npm", "start"]
能否添加一个Dockerfile用于镜像构建
Metadata
Metadata
Assignees
Labels
No labels