加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 676 Bytes
一键复制 编辑 原始数据 按行查看 历史
楠木 提交于 2021-07-13 14:45 . update cover asset URL
FROM golang:alpine3.11 as golang
RUN apk --no-cache add make git tar tzdata ca-certificates nodejs yarn wget
WORKDIR /app
COPY . .
RUN mkdir -p assets && \
cd assets && \
wget -nc https://github.com/nanmu42/orly/releases/download/1.5.0-beta/cover-images.tar.xz && \
wget -nc https://github.com/nanmu42/orly/releases/download/1.1.0-beta/fonts.tar.xz
RUN make all
FROM alpine:3.11
# Maintainer Info
LABEL maintainer="nanmu42<i@nanmu.me>"
# Dependencies
RUN apk --no-cache add tzdata ca-certificates
# where application lives
WORKDIR /app
# Copy the products
COPY --from=golang /app/bin .
# env
ENV GIN_MODE="release"
EXPOSE 3000
ENTRYPOINT ["/app/rly"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化