加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 470 Bytes
一键复制 编辑 原始数据 按行查看 历史
橘子皮儿 提交于 2018-07-17 14:55 . first commit
FROM alpine:3.4
# File Author / Maintainer
LABEL authors="yinpinghui <yinpinghui@gmail.com>"
# Update & install required packages
RUN apk add --update nodejs bash git
# Install app dependencies
COPY package.json /www/package.json
RUN cd /www; npm install
# Copy app source
COPY . /www
# Set work directory to /www
WORKDIR /www
# set your port
ENV PORT 8080
# expose the port to outside world
EXPOSE 8080
# start command as per package.json
CMD ["npm", "start"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化