1 Star 0 Fork 0

浏览器 / hoppscotch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 378 Bytes
一键复制 编辑 原始数据 按行查看 历史
Liyas Thomas 提交于 2020-08-24 05:45 . Add HOST 0.0.0.0
FROM node:12.10.0-alpine
LABEL maintainer="Liyas Thomas (liyascthomas@gmail.com)"
# Add git as the prebuild target requires it to parse version information
RUN apk add --update --no-cache \
git
# Create app directory
WORKDIR /app
ADD . /app/
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run generate
ENV HOST 0.0.0.0
EXPOSE 3000
CMD ["npm", "run", "start"]
1
https://gitee.com/browsers/hoppscotch.git
git@gitee.com:browsers/hoppscotch.git
browsers
hoppscotch
hoppscotch
master

搜索帮助