我正在为我的 Elixir 应用程序准备一个 Docker 镜像。我用于esbuild
资产编译。
esbuild
使用作为npm
包安装。
Dockerfile:
# copy umbrella app
COPY ./apps/gpanel ./apps/gpanel
...
# compile assets
RUN mix assets.deploy
Run Code Online (Sandbox Code Playgroud)
我收到这个错误:
# copy umbrella app
COPY ./apps/gpanel ./apps/gpanel
...
# compile assets
RUN mix assets.deploy
Run Code Online (Sandbox Code Playgroud)