25 Star 198 Fork 62

几颗酥 / simple-admin-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile-rpc 559 Bytes
一键复制 编辑 原始数据 按行查看 历史
几颗酥 提交于 2024-01-23 10:47 . chore: upgrade version
FROM alpine:3.19
# Define the project name | 定义项目名称
ARG PROJECT=core
# Define the config file name | 定义配置文件名
ARG CONFIG_FILE=core.yaml
# Define the author | 定义作者
ARG AUTHOR="yuansu.china.work@gmail.com"
LABEL org.opencontainers.image.authors=${AUTHOR}
WORKDIR /app
ENV PROJECT=${PROJECT}
ENV CONFIG_FILE=${CONFIG_FILE}
ENV TZ=Asia/Shanghai
RUN apk update --no-cache && apk add --no-cache tzdata
COPY ./${PROJECT}_rpc ./
COPY ./rpc/etc/${CONFIG_FILE} ./etc/
EXPOSE 9101
ENTRYPOINT ./${PROJECT}_rpc -f etc/${CONFIG_FILE}
Go
1
https://gitee.com/hopefire/simple-admin-core.git
git@gitee.com:hopefire/simple-admin-core.git
hopefire
simple-admin-core
simple-admin-core
master

搜索帮助