1 Star 0 Fork 1

刘太威/elsa-core

forked from 老胡来也/elsa-core 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 652 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build-env
WORKDIR /app
COPY . ./
WORKDIR /app/src/dashboard/Elsa.Dashboard/Theme/argon-dashboard
RUN apt-get update -yq \
&& apt-get install build-essential -y \
&& apt-get install curl gnupg -yq \
&& curl -sL https://deb.nodesource.com/setup_10.x | bash \
&& apt-get install nodejs -yq
RUN npm install
RUN npm install --global gulp-cli
RUN npm rebuild node-sass --force
RUN gulp build
WORKDIR /app
RUN dotnet publish Elsa.sln -c Release -o out
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1
WORKDIR /app
COPY --from=build-env /app/out .
ENTRYPOINT ["dotnet", "Elsa.Dashboard.Web.dll"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/ltw666/elsa-core.git
[email protected]:ltw666/elsa-core.git
ltw666
elsa-core
elsa-core
master

搜索帮助