1 Star 0 Fork 196

notlock/eoapi

forked from Eolink/Postcat  
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 757 Bytes
一键复制 编辑 原始数据 按行查看 历史
buqiyuan 提交于 2022-11-21 14:07 . chore: use env in nginx conf
FROM node:lts-alpine as builder
WORKDIR /test-server
# api 测试服务端口
ENV NODE_SERVER_PORT 4201
# websocket 测试服务端口
ENV EOAPI_WEBSOCKET_POST 4202
COPY /src/workbench/node /test-server
RUN npm config set registry https://registry.npmmirror.com
RUN yarn config set registry https://registry.npmmirror.com
RUN yarn install
EXPOSE $NODE_SERVER_PORT $EOAPI_WEBSOCKET_POST
CMD ["yarn", "start:all"]
FROM nginx:alpine as production
ENV NODE_ENV production
# 远程服务端口
ENV EOAPI_SERVER_PORT 3000
# api 测试服务端口
ENV NODE_SERVER_PORT 4201
# websocket 测试服务端口
ENV EOAPI_WEBSOCKET_POST 4202
COPY ./src/workbench/browser/dist/ /usr/share/nginx/html
COPY ./default.conf.template /etc/nginx/templates/
EXPOSE 80
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/notlock/eoapi.git
git@gitee.com:notlock/eoapi.git
notlock
eoapi
eoapi
main

搜索帮助