1 Star 0 Fork 0

BowenLau/docker-ngrok-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile2 608 Bytes
一键复制 编辑 原始数据 按行查看 历史
BowenLau 提交于 2023-05-01 22:10 . update
# 指定基础镜像
FROM centos:7
# 维护者信息
MAINTAINER bowen 544218160@qq.com
# 复制脚本文件到容器目录中
COPY entrypoint.sh /sbin/entrypoint.sh
# 运行指令
RUN chmod 755 /sbin/entrypoint.sh \
&& yum install -y epel-release \
&& yum install -y golang openssl \
# && curl -o /tmp/ngrok.tar.gz "https://gitee.com/lliubowen_94/docker-ngrok-server/raw/master/files/ngrok.tar.gz" \
# && tar -zxvf /tmp/ngrok.tar.gz -C /usr/local \
# && rm -rf /tmp/ngrok.tar.gz
# 允许指定的端口
EXPOSE 80/tcp 443/tcp 4443/tcp
# 指定ngrok运行入口
ENTRYPOINT ["/sbin/entrypoint.sh"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lliubowen_94/docker-ngrok-server.git
git@gitee.com:lliubowen_94/docker-ngrok-server.git
lliubowen_94
docker-ngrok-server
docker-ngrok-server
master

搜索帮助