1 Star 0 Fork 0

lengyanju8/gpt-pilot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
lengyanju8 提交于 2024-04-24 02:03 . biu
FROM python:3.11
# Download precompiled ttyd binary from GitHub releases
RUN apt-get update && \
apt-get install -y wget && \
wget https://github.com/tsl0922/ttyd/releases/download/1.6.3/ttyd.x86_64 -O /usr/bin/ttyd && \
chmod +x /usr/bin/ttyd && \
apt-get remove -y wget && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*
ENV NVM_DIR /root/.nvm
# RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash \
RUN curl -o- https://gitee.com/lengyanju8/nvm/raw/v0.39.5/install.sh | bash \
&& . "$NVM_DIR/nvm.sh" \
&& nvm install node \
&& nvm use node
# # 克隆nvm并安装
# RUN curl -o- https://gitee.com/lengyanju8/nvm/raw/v0.39.5/install.sh /root/.nvm && \
# cd /root/.nvm && \
# # git checkout `git describe --abbrev=0 --tags` && \
# # ./install.sh && \
# # export NVM_DIR="$HOME/.nvm" && \
# # [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # 加载nvm
# # 使用nvm安装Node.js
# RUN nvm install node && \
# nvm use node
WORKDIR /usr/src/app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
RUN python -m venv pilot-env
RUN /bin/bash -c "source pilot-env/bin/activate"
RUN pip install -r requirements.txt
WORKDIR /usr/src/app/pilot
EXPOSE 7681
CMD ["ttyd", "bash"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lengyanju8/gpt-pilot.git
git@gitee.com:lengyanju8/gpt-pilot.git
lengyanju8
gpt-pilot
gpt-pilot
anthropic

搜索帮助