9 Star 45 Fork 9

xcatliu / pagic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 887 Bytes
一键复制 编辑 原始数据 按行查看 历史
xcatliu 提交于 2020-11-11 21:16 . Fix dockerfile
FROM alpine:3.12 AS permissions-giver
# Make sure docker-entrypoint.sh is executable, regardless of the build host.
WORKDIR /out
COPY docker-entrypoint.sh .
RUN chmod +x docker-entrypoint.sh
FROM alpine:3.12 AS organizer
# Installation files
WORKDIR /out/usr/src/install
COPY src src
COPY mod.ts .
COPY deps.ts .
# Default configuration
WORKDIR /out/pagic
RUN echo "export default {};" > pagic.config.ts
FROM hayd/alpine-deno:latest AS runner
COPY --from=organizer /out /
# Install
WORKDIR /usr/src/install
ENV PATH "/root/.deno/bin:$PATH"
RUN deno install --unstable --allow-read --allow-write --allow-net --allow-run --name=pagic mod.ts \
# Install dependencies
&& deno cache --unstable $(find src -name "*.ts*" ! -name "*_test.ts*")
WORKDIR /pagic
COPY --from=permissions-giver /out/docker-entrypoint.sh /usr/local/bin
ENTRYPOINT [ "docker-entrypoint.sh" ]
CMD [ "build" ]
TypeScript
1
https://gitee.com/xcatliu/pagic.git
git@gitee.com:xcatliu/pagic.git
xcatliu
pagic
pagic
master

搜索帮助