File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010[submodule "spindle/core "]
1111 path = spindle/core
1212 url = https://tangled.org/@tangled.org/core
13+ [submodule "appviewlite/AppViewLite "]
14+ path = appviewlite/AppViewLite
15+ url = https://github.com/alnkesq/AppViewLite.git
Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
2+
3+ RUN mkdir /src /app
4+
5+ WORKDIR /src
6+ COPY ./AppViewLite .
7+ RUN dotnet publish src/AppViewLite.Web -c Release -o /app/publish
8+
9+ FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine
10+
11+ RUN apk add --no-cache \
12+ git
13+
14+ RUN mkdir /app
15+ VOLUME [ "/home/app/BskyAppViewLiteData" , "/home/app/.aspnet/DataProtection-Keys" ]
16+
17+ WORKDIR /app
18+ COPY --from=build /app/publish .
19+
20+ RUN chown -R app:app /app /home/app
21+
22+ USER app
23+
24+ ENV APPVIEWLITE_BIND_URLS=http://localhost:61750
25+ EXPOSE 61750
26+
27+ ENTRYPOINT ["dotnet" , "AppViewLite.Web.dll" ]
You can’t perform that action at this time.
0 commit comments