1 Star 0 Fork 71

Jsom/simple-admin-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile-api 593 Bytes
一键复制 编辑 原始数据 按行查看 历史
几颗酥 提交于 2023-12-29 07:54 . chore: upgrade docker image
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}_api ./
COPY ./api/etc/${CONFIG_FILE} ./etc/
COPY ./api/internal/i18n/locale/ ./etc/locale/
ENTRYPOINT ./${PROJECT}_api -f etc/${CONFIG_FILE}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/alexleix/simple-admin-core.git
git@gitee.com:alexleix/simple-admin-core.git
alexleix
simple-admin-core
simple-admin-core
master

搜索帮助