2 Star 0 Fork 0

丁老板/H1ve

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 406 Bytes
一键复制 编辑 原始数据 按行查看 历史
0akarma 提交于 2019-12-23 15:32 . Change Dockerfile to an exist base image
#--- Release ---
FROM d0g3/h1ve
ARG WORKDIR
ENV WORKDIR_IN ${WORKDIR}
WORKDIR $WORKDIR
RUN mkdir -p $WORKDIR /var/log/CTFd /var/uploads
COPY . $WORKDIR
RUN for d in CTFd/plugins/*; do \
if [ -f "$d/requirements.txt" ]; then \
pip install -r $d/requirements.txt; \
fi; \
done;
RUN chmod +x $WORKDIR/docker-entrypoint.sh
EXPOSE 8000
ENTRYPOINT ${WORKDIR_IN}/docker-entrypoint.sh
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/boss-ding/H1ve.git
[email protected]:boss-ding/H1ve.git
boss-ding
H1ve
H1ve
master

搜索帮助